-
Notifications
You must be signed in to change notification settings - Fork 1
/
cms.php
29 lines (27 loc) · 899 Bytes
/
cms.php
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
<?php include("db.php"); ?>
<!doctype html>
<html>
<head>
<title>
News Page with simple CMS
</title>
<link rel="stylesheet" href="reset.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Varela+Round">
</head>
<body>
<div id="header">
<h1>
New News Post - Simple CMS
</h1>
</div>
<form action="post.php" method="POST">
<fieldset>
<p>If wanting to go to a new line use the < BR > tag please (no spaces between the "<" and the words)! You can also use other html5 tags.<br><br>Example: "I love cheese, < br > (no spaces) I like milk"<br><br>
<p><input name="title" id="title" type="text" placeholder="Title"></p>
<p><textarea name="text" id="text" type="password" placeholder="Text"></textarea></p>
<p><button id="login">Post</button></p>
</fieldset>
</form>
</body>
</html>