-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (23 loc) · 894 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Sovereign Stationary</title>
</head>
<body style="background-color: #3cae3f;">
<h1 style="position: relative;">Sovereign</h1>
<h1 style="text-indent: 1.3vw; position: relative;">Stationary</h1>
<div class="container">
<h2>Login</h2>
<form id="loginForm">
<input type="text" id="username" placeholder="Username">
<input type="password" id="password" placeholder="Password">
<button id="button" type="submit">Submit</button>
</form>
<p id="error" class="error-message"></p>
</div>
<script src="scripts.js"></script>
</body>
<footer style="font-size: 2em; color: white; text-align: center; bottom: 0; position: relative; padding: 20px; text-shadow: 0 1px 3px rgba(0, 0, 0, 1);">2024, Scott Bader</footer>
</html>