-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (39 loc) · 2.25 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="csrf-token" content= "7632b3c2-35c0-4f8b-a3fc-28b78d67f89e">
<link href="/css/styles.css" rel="stylesheet" />
<title>Login</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bodyst">
<ul class="menuBackground">
<li class="menuitem"><a href="/adminSignout" class="block py-2 pl-3 pr-4 text-white-700 rounded hover:bg-white-100 md:hover:bg-transparent md:border-0 md:hover:text-yellow-400 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent">Signout</a></li>
<li class="menuitem"><a href="/adminHome" class="block py-2 pl-3 pr-4 text-white-700 rounded hover:bg-white-100 md:hover:bg-transparent md:border-0 md:hover:text-yellow-400 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent">Home</a></li>
<li class="text-4xl font-semibold"><a href="/adminHome" style="color: #FACA15;">
Decipher</a></li>
</ul>
<div class="grid grid-cols-6">
<div class="col-start-3 col-span-2">
<h6 class="py-4">Login to your account</h6>
<form action= /userSession method="post">
<input type="hidden" name="_csrf" value="7632b3c2-35c0-4f8b-a3fc-28b78d67f89e">
<div class="py-3">
<label for="voterid">Player ID:</label>
<input type="text" name="userid" class="border border-gray-300 text-gray-900 rounded p-2 w-full">
</div>
<div class="py-3">
<label for="password">Password:</label>
<input type="password" name="password" class="border border-gray-300 text-gray-900 rounded p-2 w-full">
</div>
<div class="py-3 centerElement">
<button type="submit" class="text-white bg-green-600 hover:bg-green-800 font-medium rounded px-5 py-2">Sign in</button>
</div>
</form>
</div>
</div>
</body>
</html>