-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (86 loc) · 2.45 KB
/
index.html
File metadata and controls
89 lines (86 loc) · 2.45 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Login</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="icon"
type="image/png"
href="res/icons/favicon.png"
sizes="192x192"
/>
<link rel="stylesheet" href="index.css" />
<style>
.error-message {
color: #ff0000;
margin-top: 10px;
display: none;
text-align: center;
font-family: "mainFont";
}
.watermark-footer {
position: fixed;
bottom: 10px;
right: 10px;
color: rgba(235, 204, 29, 0.3);
font-size: 1rem;
font-family: "mainFont";
pointer-events: none;
}
</style>
</head>
<body>
<main class="login-container">
<form id="login-form" class="login-form" autocomplete="off" method="post">
<!-- Add a hidden dummy field to prevent autofill -->
<input type="text" style="display:none" />
<input type="password" style="display:none" />
<section class="login-form-title">
<h2>Welcome to Spoudi</h2>
</section>
<section class="login-form-content">
<label for="email">Email</label>
<input
type="email"
id="email"
name="email"
placeholder="Email"
required
autocomplete="off"
readonly
onfocus="this.removeAttribute('readonly');"
/>
<label for="password">Password</label>
<input
type="password"
id="password"
name="password"
placeholder="Password"
required
autocomplete="new-password"
/>
<div
id="login-error"
class="error-message"
style="display: block"
></div>
</section>
<section id="login-form-footer" class="login-form-footer">
<button type="submit" class="loginButton">
<span>Login</span>
</button>
</section>
</form>
<section class="right-login-panel">
<img src="res/icons/Saint_Louis_University_PH_Logo.svg" alt="" />
</section>
</main>
<footer class="watermark-footer">
9467-IT312
</footer>
<script src="login.js"></script>
</body>
</html>