-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
38 lines (35 loc) · 1.07 KB
/
index.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
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<HTML>
<head>
<?php include_once '../../includes/views/head.php'; ?>
</head>
<body>
<?php include_once 'includes/header.php'; ?>
<div class="row">
<div class="small-8 small-offset-2 columns">
<?php include_once 'includes/nav.php'; ?>
<?php
$error = $_GET['error'];
if($error == 1){
echo "<h3 class='text-center'>That word already exists!</h3>";
}
?>
<form method="post" action="insert.php">
<label>
Word:
<br />
<input type="text" name="word" />
</label>
<br />
<label>
Definition:
<br />
<textarea rows="4" name="definition"></textarea>
</label>
<br />
<input class="button expand" type="submit" value="Submit" />
</form>
</div>
</div>
</body>
</HTML>