-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.php
89 lines (72 loc) · 2.53 KB
/
hello.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE HTML>
<html>
<head>
<title>Ideabook</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
</head>
<body>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header" class="alt">
<span class="logo"><img src="images/logo.svg" alt="" /></span>
<h1>Your Idea was Submitted</h1>
<p>Thanks more making the world a little bit better.</p>
</header>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="#cta">Write an Idea</a></li>
<li><a href="ideas.php">See some Ideas</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<!-- Introduction -->
<!-- Get Started -->
<section id="cta" class="main special">
<header class="major">
<h2>Write your idea.</h2>
<p>Add your idea to the world repository and do some good.</p>
</header>
<!--TODO -->
<!-- Form -->
<h2>Form</h2>
<form method="post" action="submit.php">
<div class="row uniform">
<div class="12u 12u$(xsmall)">
<input type="text" name="name" id="name" value="" placeholder="Name" />
</div>
<div class="12u$">
<input type="text" name="idea" id="idea" value="" placeholder="Idea" />
</div>
<div class="12u$">
<ul class="actions">
<li><input type="submit" value="Send Message" class="special" /></li>
<li><input type="reset" value="Reset" /></li>
</ul>
</div>
</div>
</form>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<p class="copyright">© 2016 Aishik Saha. Made with love in India.</p>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>