-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
61 lines (31 loc) · 1.28 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
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Using PHP And MySQL</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="top-bar">
<span id="topBarTitle">Blog | New Post</span>
</div>
<div class="writing-section">
<form action="blog_post_process.php" method="POST" enctype="multipart/form-data">
<input id="blogTitle" name="blogtitle" type="text" placeholder="Blog Title..." autocomplete="off">
<br>
<span id="dateLabel">Date: </span>
<input id="blogDate" name="blogdate" readonly></input>
<br><br>
<input type="file" name="uploadimage">
<br><br>
<textarea id="blogPara" name="blogpara" cols="75" rows="10" type="text" placeholder="Blog Paragraph..." autocomplete="off"></textarea>
<br><br>
<button id="saveBtn" type="submit">Save Post</button>
</form>
<br>
<center><a style="text-decoration: none;" href="index.php" id="saveBtn">Go to Home Page</a></center>
</div>
<script src="scripts/script.js"></script>
</body>
</html>