initial commit
This commit is contained in:
15 files changed
+401
No files matched your search
Executable
+31
@@ -0,0 +1,31 @@
|
||||
<!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>
|
||||
Reference in new issue
Block a user