-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweekly.html
102 lines (83 loc) · 3.12 KB
/
weekly.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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>oneeyedsuperkid</title>
<link rel="icon" href="Images/ZineButtons/bansheebutton1.png">
<link rel="stylesheet" href="CSS/normalize.css">
<link rel="stylesheet" href="CSS/home.css">
<link rel="stylesheet" href="CSS/weekly.css">
<link rel="stylesheet" href="CSS/index.css">
<link rel="stylesheet" href="CSS/login.css">
<link rel="stylesheet" href="CSS/create-account.css">
<link rel="stylesheet" href="CSS/loader.css">
</head>
<body>
<div id="loadingScreen">
<img src="Images/gif.gif" alt="">
<div id="loadingBarContainer">
<div id="loadingBar"></div>
</div>
</div>
<div id="pageContent">
<div class="header">
<button class="home" type="button" onclick="window.location.href='index'">
<img src="Images/title/Oneeyedsuperkid.png" />
<p class=title>Home of The Shadow Banshee, The Dreamwalker, The Superkid and more...    </p>
</button>
</div>
<button id="login-button" class="nav-button">Login</button>
<div id="login-sidebar">
<div id="login">
<form id="login-form">
<span>Log in:</span>
<br>
<input type="text" id="login-username-email" placeholder="Username or Email" required>
<input type="password" id="login-password" placeholder="Password" required>
<button type="submit" id="login-submit" class="nav-button">Login</button>
</form>
</div>
<div id="sign-up">
<span>Don't have an account? Create one!</span>
<button id="signup-button" class="nav-button">Sign Up</button>
</div>
<div id="logged-in">
<div id="account-info">
<span id="account-username"></span>
<br>
<br>
<span>You are logged in!</span>
<br>
<br>
</div>
<button id="account-button" class="nav-button" onclick="window.location.href='account'"">account</button>
<button id="logout-button" class="nav-button">Log out</button>
</div>
<div id="create-account-form" class="modal">
<div class="modal-content">
<span class="close">×</span>
<form id="create-account-form">
<input type="text" id="signup-username" placeholder="Username" required><br>
<input type="email" id="signup-email" placeholder="Email" required><br>
<input type="password" id="signup-password" placeholder="Password" required><br>
<button type="submit" class="nav-button">Create Account</button>
</form>
</div>
</div>
</div>
<h3 id="head" >Welcome to the Weekly-ish Banshee!</h3>
<div class="container">
<img src="Images/clouds.gif" class="clouds">
<div id="weekly-content">
</div>
</div>
<div class="container">
<img src="Images/clouds.gif" class="clouds">
</div>
</div>
<script type="module" src="JS/login.js"></script>
<script type="module" src="JS/weekly.js"></script>
<script src="JS/loading.js"></script>
</body>
</html>