-
Notifications
You must be signed in to change notification settings - Fork 1
/
account.html
72 lines (66 loc) · 2.54 KB
/
account.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="nushdle.">
<meta name="description" content="NUS High's very own version of Wordle">
<meta name="theme-color" content="#19A7A7">
<meta property="og:type" content="website">
<meta property="og:title" content="nushdle.">
<meta property="og:description" content="NUS High's very own version of Wordle">
<title>nushdle.</title>
<link href="./css/style.css" rel="stylesheet" type="text/css" media="all">
<link href="./css/output.css" rel="stylesheet">
<style>
a {
text-shadow: none;
}
a:hover {
text-shadow: 0px 0px 15px #FFFFFF, 0px 0px 15px #FFFFFF;
}
a:hover.nohover {
text-shadow: none;
}
.submitBtn {
text-shadow: none;
}
.submitBtn:hover {
text-shadow: 0px 0px 25px #00FF00, 0px 0px 25px #00FF00;
}
.submitBtn:hover.nohover {
text-shadow: none;
}
</style>
</head>
<body class="">
<a href="index.html">
<h1 style="font-size: 40pt;"><span style="color:#19A7A7;">nush</span>dle.</h1>
</a>
<div class="place-content-center" style="text-shadow: none;">
<ul class="grid gap-2.5 place-content-center justify-items-center list-none justify-items-center w-full ">
<li>
<div class="m-0 p-0 flex relative">
<input type="text" id="uname"
class="w-80 border text-sm rounded-lg block p-2.5 bg-gray-700 border-gray-600 text-white placeholder-gray-100"
placeholder="Username">
</div>
</li>
<li>
<div class="m-0 p-0 flex relative">
<input type="password" id="pwd"
class="w-80 border text-sm rounded-lg block p-2.5 bg-gray-700 border-gray-600 text-white placeholder-gray-100"
placeholder="Password">
<!--<input type="checkbox" onclick="setPwdVisible()">Show Password-->
</div>
</li>
<li>
<button class="submitBtn" onclick="login()">Log in</button>
<button class="submitBtn" onclick="makeAcc()">Create Account</button>
</li>
</ul>
</div>
</body>
<script defer src="backup_account.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</html>