-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewpost.html
59 lines (41 loc) · 1.98 KB
/
newpost.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>New Post - STiBaRC</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
<link rel="icon" type="image/png" href="./fav.png">
<meta name="mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-title" content="STiBaRC">
<link rel="stylesheet" href="./assets/css/global.css">
</head>
<body>
<div class="light-bg" style="min-height: 100vh;">
<main class="container" style="min-height: 95vh;">
<br>
<h2 class="text-sh center">New Post</h2>
<br>
<div class="form">
<div class="red-text text-sh center" id="errorMsg" style="display: none;"></div>
<h2 class="text-sh light-text">Title</h2>
<input id="title" class="text-input text-sh block" type="text" autofocus>
<h2 class="text-sh light-text">Content</h2>
<textarea id="content" class="text-input block" name="content" rows="8"></textarea>
<div class="margin-small"></div>
<div id="imageadd">
<h2 class="text-sh light-text">Attach image/audio/video</h2>
<input class="text-input light-text block" type="file" id="file" name="file" accept="image/*,video/*,audio/*">
</div>
<div class="margin-x-large"></div>
<button class="mc-button block" id="login"><span>Submit</span></button>
<div class="margin-small"></div>
<a class="mc-button block" href="./index.html"><span>Cancel</span></a>
</div>
<div class="margin-small"></div>
</main>
<div class="margin-small"></div>
</div>
<script src="./assets/js/global.js"></script>
<script src="./assets/js/newpost.js"></script>
</body>
</html>