-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (88 loc) · 4.47 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bonk!</title>
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend+Deca:[email protected]&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<!-- css -->
<link rel="stylesheet" href="src/app/self.css">
<link rel="stylesheet" href="src/app/switch.css">
<link rel="stylesheet" href="src/app/login/style.css">
<!-- js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="src/dynamics/navscroll.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="src/app/login/log-form.js"></script>
</head>
<body>
<nav id="navbar">
<div class="container">
<a href="index.html" id="titler" class="hover-grow title">bonk!</a>
<div class="right-elements">
<!-- dark/light switch -->
<div class="toggle-switch">
<input type="checkbox" id="mode-switch" onclick="themer()" checked>
<label for="mode-switch">
<div class="slider hover-grow">L</div>
</label>
</div>
<!-- login -->
<div class="login">
<a href="#" onclick="opener()"><button id="main-login">LOGIN</button></a>
<!-- the login popup -->
<div id="modal-wrapper" class="modal">
<form class="modal-content animate" action="/login" method="POST">
<div class="imgcontainer">
<span onclick="document.getElementById('modal-wrapper').style.display='none'"
class="close" title="Close PopUp">×</span> </div>
<div class="tit-text">LOGIN PAGE</div>
<div class="cont">
<input class="inpflogin" type="text" placeholder="Username" name="username" required>
<input class="inpflogin" type="password" placeholder="Password" name="password"
required>
<button type="submit" class="login-but">Login</button>
<a href="/register"><div class="atext">dont have an account yet?</div></a>
</div>
</form>
</div>
</div>
</div>
</div>
</nav>
<div id="body-container">
<div class="body-t-med">
In a city of endless stories, there exists a hidden library, known only to those who seek it. Within its walls lie tales of ancient wisdom and boundless discovery.
<br><br>As you step into this hidden sanctuary, a single journal catches your eye, filled with secrets waiting to be uncovered.
<br><br>Beside it, a recruit-self button awaits, inviting you to embark on your own journey of exploration and connection.
<br><br>With a click, you open the door to a world of endless possibilities.
<br><br>Welcome to the unseen library.
</div>
<div class="rec-container">
<a href="/register" style="text-decoration: none;">
<!-- <div class="body-title" style="margin: 3% auto; color: var(--color-t1); font-size: xx-large;">Recruit-Self
</div> -->
<button class="rec-button">
Recruit-Self
</button>
</a>
</div>
</div>
</body>
<!-- late load scripts -->
<script src="src/dynamics/theme.js"></script>
</html>
<!-- light mode #e0d7c1 -->
<!-- for title #5F4C41 -->
<!-- text : #E7B38F -->
<!-- dark mode #292929 -->
<!-- text : #616161 -->