-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththread_create.html
More file actions
39 lines (36 loc) · 1.36 KB
/
thread_create.html
File metadata and controls
39 lines (36 loc) · 1.36 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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-light container">
<a class="navbar-brand text-primary" href="#">goreddit</a>
</nav>
<div class="header bg-light border-bottom border-top py-5">
<div class="container">
<h1 class="mb-0">Create a new thread</h1>
</div>
</div>
<div class="container py-5">
<div class="row">
<div class="col-xl-8 order-1 order-xl-0">
<form>
<div class="form-group">
<label>Title</label>
<input type="text" class="form-control" placeholder="Give your thread a great title">
</div>
<div class="form-group">
<label>Description</label>
<textarea class="form-control" rows="3"
placeholder="Tell people what your thread is about"></textarea>
</div>
<button type="submit" class="btn btn-primary">Create Thread</button>
</form>
</div>
</div>
</div>
</body>
</html>