Newer
Older
instance / login.html
@Nakagawa.K Nakagawa.K on 16 Oct 1 KB 追加
<!DOCTYPE html>
<html>
<head>
    <title>ログイン</title>
    <link rel="stylesheet" href="css/style.css">
</head>
<body>
    <center>
            <div class="container">
            <h1>ログイン</h1>
            <p>作業を続けるには、ログインしてください。</p>
            <p>ユーザー名</p>
            <input type="text" id="username" class="textbox" placeholder="ユーザー名を入力">
            <p>パスワード</p>
            <input type="password" id="pass" class="textbox" placeholder="パスワードを入力">
            <br><input type="checkbox" id="showpassword" onchange="showOrHide()" class="margin">
            <span>パスワードを表示する</span>
            <br><input type="button" id="1" value="ログイン" class="button margin" onclick="login()">
            <br><a href="newlogin.html">新規作成はこちら</a>
            <br><a href="aaa.html">お忘れの場合</a>
        </div>
    </center>
</body>
<script src="js/login.js"></script>
</html>