Newer
Older
instance / newlogin.html
@Nakagawa.K Nakagawa.K on 16 Oct 945 bytes 追加
<!DOCTYPE html>
<html>
<head>
    <title>新規作成</title>
    <link rel="stylesheet" href="css/style.css">
</head>
<body>
  <center>
    <div class="container">
        <h2>新規登録します</h2><br>
        <h3>ご登録するメールアドレスにパスワードを送信します。</h3>
        <p>メールアドレス</p>
        <input type="email" id="email" class="textbox" placeholder="メールアドレスを入力"><br>
        <input type="button" value="送信" class="button margin" onclick="sendPassword()">
        <input type="password" id="pass" class="textbox" placeholder="パスワードを入力">
        <br><input type="checkbox" id="showpassword" onchange="showOrHide()" class="margin">
        <span>パスワードを表示する</span>
        <br><input type="button" value="ログイン" class="button margin" onclick="login()">
    </div>
  </center>
</body>
<script src="js/pass.js"></script>
</html>