-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (52 loc) · 1.57 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
<!DOCTYPE html >
<html lang="en" id="contentDiv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SynpUp V2</title>
<link rel="stylesheet" href="pages/home.css">
</head>
<body>
<!-- authpage -->
<div id="authpage">
<h1>Login/Signup</h1>
<form id="signupForm">
<label for="username">Username:</label>
<input type="text" id="username" required>
<label for="password">Password:</label>
<input type="password" id="password" required>
<button id="SignupButton">Signup</button>
<button id="LoginButton">Login</button>
</form>
</div>
<!-- homepage -->
<div id="homepage">
<div>
<h1 class="navbarItems">⚡️ SnypUp</h1>
<div class="navbarItems" ></div>
<div class="navbarItems" id="userBlock">
<h3 id="userdom">d</h3>
<button id="logout">LogOut</button></div>
</div>
<div class="main">
<div class="sidebar">
<div id="newNote">➕ Create New Snyp</div>
<hr>
<div id="code-list" ></div>
</div>
<div id="verticleRool"></div>
<div class="holder">
<div class="icon">Icon</div>
<button id="savePage">Save</button>
<button id="editPage">Save</button>
<button id="deletePage">Delete</button>
<button id="copyPage">Copy</button>
<h1 id="title" contenteditable="true" placeholder=""></h1>
<div id="code" class="post-body" contenteditable="true" spellcheck="false"></div>
</div>
</div>
</div>
</body>
<script src="/pages/popup.js" type="module"></script>
<script src="pages/home.js"></script>
</html>