forked from projectshft/project-reddit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (32 loc) · 1001 Bytes
/
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
<html>
<head>
<title>Eval2</title>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="page-header">
<h1>ReReddit</h1>
</div>
<div class="posts">
</div>
<form style="margin-top:30px;" onsubmit="event.preventDefault();">
<div class="form-group">
<input id="post" type="text"
class="form-control"
placeholder="Post Text"></input>
</div>
<div class="form-group">
<input id="name" type="text"
class="form-control"
placeholder="Your Name"></input>
</div>
<button id="submit" class="btn btn-primary">Submit Post</button>
</form>
</div>
</div>
<script src="main.js"></script>
</body>
</html>