initial commit

This commit is contained in:
SowinskiBraeden committed 2025-05-05 10:17:17 -07:00
commit da746fc04f
15 files changed
+401

No files matched your search

+31
View File
@@ -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>