-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (55 loc) · 1.72 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://bootswatch.com/4/cosmo/bootstrap.min.css"
/>
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<title>My JavaScript App</title>
</head>
<body>
<nav class="navbar navbar-dark bg-primary mb-3">
<div class="container">
<a href="#" class="navbar-brand">MicroPosts</a>
</div>
</nav>
<div class="container postsContainer">
<div class="card card-body card-form">
<h1>Say Something</h1>
<p class="lead">What's on your mind ?</p>
<div class="form-group">
<input
type="text"
id="title"
class="form-control"
placeholder="Post Title"
/>
</div>
<div class="form-group">
<textarea
id="body"
class="form-control"
placeholder="Post Body"
></textarea>
</div>
<input type="hidden" id="id" value="" />
<button class="post-submit btn btn-primary btn-block">Post It</button>
<span class="form-end"></span>
</div>
<br />
<div id="posts"></div>
</div>
<footer class="mt-5 p-3 text-center bg-light">MicroPosts @copy;</footer>
<script src="build/app.bundle.js"></script>
</body>
</html>