forked from projectshft/project-reddit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.02 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>project-reddit</title>
</head>
<body>
<div class="page-header">
<h1><strong>ReReddit</strong></h1>
</div>
<div class="posts"></div>
<form onsubmit="event.preventDefault();">
<div class="form-group">
<textarea
type="text"
id="post-text"
class="form-control"
placeholder="Post Text"
></textarea>
</div>
<div class="form-group">
<input
type="text"
id="your-name"
class="form-control"
placeholder="Your Name"
/>
</div>
<button id="submit-post" class="btn btn-primary">Submit Post</button>
</form>
<script src="main.js"></script>
</body>
</html>