-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.ejs.html
More file actions
53 lines (47 loc) · 1.55 KB
/
create.ejs.html
File metadata and controls
53 lines (47 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet" type="text/css" />
<title>Create a Post on OnlyFish</title>
</head>
<body>
<div class="wrapper">
<div class="img-area">
<div class="inner-area">
<img src="https://www.wideopenpets.com/wp-content/uploads/2019/10/Fish-Names-770x405.png" alt="">
</div>
</div>
<div class="name">Create a Post</div>
<div class="about">
<i class="fa fa-desktop" aria-hidden="true"></i>
<span>
Type your message in the box...<br><br>Click the submit button below to post it!<br>
</span>
</div>
<div class="row">
<i class="fas fa-share"></i>
</div>
</div>
<div class="wrapper wrapper2">
<form action="/post" method="POST">
<!-- Title -->
<label for="title">Title:</label>
<input type="text" id="title" name="title">
<!-- Body -->
<label for="body">Body:</label>
<textarea name="body" id="body" cols="30" rows="10"></textarea>
<!-- Status -->
<select name="status" id="status">
<option value="public" selected>Public</option>
<option value="private">Private</option>
</select>
<label for="status">Status</label>
<!-- Buttons -->
<div class="buttons">
<input type="submit" value="Submit">
<a href="/">Cancel</a>
</div>
</form>
</div>
</body>