-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (47 loc) · 2.2 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
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 lang="en">
<head>
<meta charset="UTF-8">
<title>Numericle</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.min.js"></script>
<!-- <script src="https://kit.fontawesome.com/444f75a2ad.js" crossorigin="anonymous"></script> -->
<script src="app.js" type="module"></script>
</head>
<body>
<div class="toggle-container">
<!-- <a href=""><i class="fa fa-solid fa-house-user" ></i></a> -->
<input type="checkbox" id="switch" name="theme" /><label id="toggle-switch theme-switcher" for="switch">Toggle</label>
</div>
<div class="game-container">
<div class="title-container">
<h1 class="gradient-text"><span id="header-span">AlphaNumericle</span>
</h1>
</div>
<div class="attr">
Coded with 🧡 by Soustab Haldar
</div>
<div class="login-page">
<div class="form">
<form class="register-form">
<input type="text" id="nameInp" placeholder="full Name" />
<input type="text" id="userNameInp" placeholder="username" />
<input type="password" id="passInp" placeholder="password" />
<input type="text" id="emailInp" placeholder="email address" />
<button id="createUser" type="button" class="button-two raise">create</button>
<p class="message">Already registered? <a href="#">Sign In</a></p>
</form>
<form class="login-form">
<input type="text" id="userInpLogin" placeholder="username" />
<input type="password" id="passInpLogin" placeholder="password" />
<button id="loginUser" type="button" class="button-two raise">login</button>
<p class="message">Not registered? <a href="#">Create an account</a></p>
</form>
</div>
</div>
<div class="tile-container"></div>
<div class="key-container"></div>
</div>
</body>
</html>