forked from cs242fa15nfaToDfa/nfaToDfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
77 lines (69 loc) · 2.34 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
<!DOCTYPE html>
<!--
Transit by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NFA to DFA</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<script src="js/main.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
</noscript>
</head>
<body class="landing">
<!-- Two -->
<section id="two" class="wrapper style3 special">
<div class="container">
<header class="major">
<h2>NFA to DFA</h2>
</header>
<footer>
<ul class="actions">
<li>
Enter states and transitions:
<form NAME="myform" ID="state_input" ACTION="" METHOD="GET">
<input TYPE="text" NAME="inputbox" ID="csn_states" VALUE="" placeholder="States">
<input TYPE="text" NAME="inputtransitionbox" ID="csn_transitions" VALUE="" placeholder="Transitions">
<input TYPE="button" CLASS="special" NAME="button" ID="csn_button" Value="Process" onClick="processStates()">
<input TYPE="button" CLASS="special" NAME="resetbutton" Value="Reset" onClick="resetElements()">
</form>
<table ID="reachable" style="display: none;">
<caption>Reachable</caption>
</table>
<table ID="unreachable" style="display: none;">
<caption>Unreachable</caption>
</table>
</li>
</ul>
</footer>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="8u 12u$(medium)">
<ul class="copyright">
<li>© Untitled. All rights reserved.</li>
<li>Design: <a href="http://templated.co">TEMPLATED</a></li>
<li>Images: <a href="http://unsplash.com">Unsplash</a></li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>