-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
36 lines (33 loc) · 849 Bytes
/
popup.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
<!-- Page that loads on clicking the lgogo. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="script.js"></script>
<script src="url.js"></script>
<link rel="stylesheet" type = "text/css" href="style.css">
<style>
input[id="comment"]{
text-align: center;
}
input[id="name"]{
text-align: center;
}
</style>
</head>
<body>
<button id = "profile">Profile</button>
<p>
<div id="inputs">
<br>
<input id = "comment" placeholder= "Leave a message!">
<br><br>
<input type = "hidden" id = "url" value = "url">
<button id = "save">Save Line</button>
<button id = "logout"> Logout</button>
</p>
</div>
<h1 id="commentsheader"> Comments </h1>
</body>
</html>