32 lines
992 B
Plaintext
Executable File
32 lines
992 B
Plaintext
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>2537 Assignment 1</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" href="/static/css/index.css">
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
|
|
</head>
|
|
<body>
|
|
<div class="center">
|
|
<form action="/login" method="POST">
|
|
<label for="username">
|
|
<i class="fas fa-envelope"></i>
|
|
</label>
|
|
<input type="email" name="email" placeholder="Email" id="email" required>
|
|
|
|
<label for="password">
|
|
<i class="fas fa-lock"></i>
|
|
</label>
|
|
<input type="password" name="password" placeholder="Password" id="password" required>
|
|
|
|
<input id="login" type="submit" value="Login">
|
|
<h3 id="flash-msg" class="flash-msg"><%= message %></h3>
|
|
</form>
|
|
</div>
|
|
|
|
<script src="/static/scripts/loadFlash.js"></script>
|
|
</body>
|
|
</html>
|