-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnew-topic.html
73 lines (68 loc) · 3.39 KB
/
new-topic.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<title>Forum - Create new topic</title>
</style>
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<div class="container">
<h1><a href="#" class="navbar-brand">Forum</a></h1>
<form class="form-inline">
<input type="text" class="form-control mr-3 mb-2 mb-sm-0 " placeholder="Search">
<button type="submit" class="btn btn-primary">Search</button>
</form>
</div>
</nav>
<div class="container my-3">
<nav class="breadcrumb">
<a href="#0" class="breadcrumb-item">Board index</a>
<a href="#0" class="breadcrumb-item">Forum category</a>
<a href="#0" class="breadcrumb-item">Forum name</a>
<span class="breadcrumb-item active">Create new topic</span>
</nav>
<div class="row">
<div class="col-12">
<h2 class="h4 text-white bg-info mb-3 p-4 rounded">Create new topic</h2>
<form class="mb-3">
<div class="form-group">
<label for="topic">Topic</label>
<input type="text" class="form-control" id="topic" placeholder="Give your topic a title." required>
</div>
<div class="form-group">
<label for="comment">Comment:</label>
<textarea class="form-control" id="comment" rows="10" placeholder="Write your comment here." required></textarea>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input" id="checkbox" value="notification">
Notify me upon replies.
</label>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<button type="reset" class="btn btn-danger">Reset</button>
</form>
</div>
</div>
</div>
<footer class="small bg-dark text-white">
<div class="container py-4">
<ul class="list-inline mb-0 text-center">
<li class="list-inline-item">© 2017 Web Company, Inc.</li>
<li class="list-inline-item">All rights reserved.</li>
<li class="list-inline-item"><a href="#">Terms of use and privacy policy</a>.</li>
</ul>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
</body>
</html>