sriyanto

login

Oct 12th, 2022
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <title>Login</title>
  6.         <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
  7.         <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
  8.     </head>
  9.     <body>
  10.         <div class="login">
  11.             <h1>Login</h1>
  12.             <div class="links">
  13.                 <a href="{{ url_for('login') }}" class="active">Login</a>
  14.                 <a href="#">Register</a>
  15.             </div>
  16.             <form action="{{ url_for('login') }}" method="post">
  17.                 <label for="username">
  18.                     <i class="fas fa-user"></i>
  19.                 </label>
  20.                 <input type="text" name="username" placeholder="Username" id="username" required>
  21.                 <label for="password">
  22.                     <i class="fas fa-lock"></i>
  23.                 </label>
  24.                 <input type="password" name="password" placeholder="Password" id="password" required>
  25.                 <div class="msg">{{ msg }}</div>
  26.                 <input type="submit" value="Login">
  27.             </form>
  28.         </div>
  29.     </body>
  30. </html>
Add Comment
Please, Sign In to add comment