This repository has been archived by the owner on Jul 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
116 lines (105 loc) · 5.53 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE HTML>
<!--
Spectral by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>MOAP</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 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<script src="//load.sumome.com/" data-sumo-site-id="4033db3e56ab0dd65169a4581d83781ab25a63791254a061282d8fe6dcdd779a" async="async"></script>
</head>
<body class="landing">
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header id="header" class="alt">
<h1><a href="index.html">MOAP</a></h1>
<nav id="nav">
<ul>
<li class="special">
<a href="#menu" class="menuToggle"><span>Menu</span></a>
<div id="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="getting_started.html">Getting Started</a></li>
<li><a href="examples.html">Examples</a></li>
<li><a href="about.html">About MOAP</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</li>
</ul>
</nav>
</header>
<section id="banner" class="wrapper style5 special">
<div class="inner">
<center>
<a href=index.php><img src="images/moap-cropped.png" style='width:50%;' />
</a>
</br>
<p>Your personal algorithm design assistant</p>
<div class="6u 12u$(xsmall)">
<form action="solve.php" method="post">
<input type="text" name="moap-input" value="" placeholder="Enter your problem here." />
<input type="submit">
</form>
</div>
</center>
</div>
</section>
<section id="one" class="wrapper style5 special">
<div class="inner">
<header class="major">
<h2>What is MOAP?</h2>
<p>The <b>M</b>other <b>O</b>f <b>A</b>ll <b>P</b>rograms is an automated algorithm design assistant.</br>
Simply enter your algorithm problem, and MOAP will give you a solution in pseudocode.</p>
<p>Visit our <a href="getting_started.html">About</a> page to learn more, or our <a href="getting_started.html">Getting Started</a> page to start using MOAP!</p>
</header>
<ul class="icons major">
<li><span class="icon fa-user major style1"><span class="label">User</span></span></li>
<li><span class="icon fa-arrow-circle-right major style2"><span class="label">MOAP</span></span></li>
<li><span class="icon fa-code major style3"><span class="label">Code</span></span></li>
</ul>
</div>
</section>
<section id="cta" class="wrapper style5">
<div class="inner">
<header>
<h2>Want to be an alpha tester or learn more?</h2>
<p>We promise to only use your email for alpha-test notifications and information you request.</p>
</header>
<ul class="actions vertical">
<form action="https://formspree.io/[email protected]" method="POST">
<input type="text" name="name" placeholder="Your Name">
<input type="email" name="_replyto" placeholder="Your Email">
<input type="submit" value="Send">
</form>
</ul>
</div>
</section>
<footer id="footer" class="wrapper style5 special">
<ul class="icons">
<li><a href="http://www.rayokadaparker.com/" class="icon fa-envelope-o"><span class="label">Email</span></a></li>
</ul>
<ul class="copyright">
<li>MOAP Inc.</li>
</ul>
</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>