Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Sign In into your account</title> | |
| <link rel="stylesheet" href="../static/style.css" /> | |
| </head> | |
| <body> | |
| <!-- <h1 class="mock-text">This is a mock website.</h1> --> | |
| <div class="login-body"> | |
| <div class="center-contents"> | |
| <h2 class="sign-in-title">Sign In into Your Account</h2> | |
| <form action="" method="post"> | |
| <div class="input-containers"> | |
| <div class="input-signup"> | |
| <label for="userid">User Id</label> | |
| <input | |
| type="text" | |
| name="userid" | |
| id="userid" | |
| placeholder="Enter your User ID" | |
| /> | |
| </div> | |
| <div class="input-signup"> | |
| <label for="password">Password</label> | |
| <input | |
| type="password" | |
| name="password" | |
| id="password" | |
| placeholder="Enter your Password" | |
| /> | |
| </div> | |
| </div> | |
| <div class="sign-in-buttons-container"> | |
| <button class="red-button btn" type="submit">Sign In</button> | |
| <a class="btn" href="{{ url_for('auth.google_login') }}" | |
| >Sign In with Google</a | |
| > | |
| </div> | |
| </form> | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |