-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.php
38 lines (32 loc) · 880 Bytes
/
form.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>
<title>Formless Contact</title>
<link rel="stylesheet" type="text/css" href="formless.css" />
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/formless.js"></script>
</head>
<body>
<header>
<div class="row">
<div class="twelvecol">
<h1>Formless</h1>
</div>
</div>
</header>
<section id="pagebody" class="main">
<section class="form" id="contact">
<div class="message"></div>
<p class="label name">Name*</p>
<p id="name" class="field"></p>
<p class="label email">Email*</p>
<p id="email" class="field"></p>
<p class="label comments">Comments</p>
<div id="comments" class="field"></div>
<a href="#" class="button" id="submit">Submit</a>
</section>
</section>
<footer>
</footer>
</body>
</html>