forked from thegame8714/reactquiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.html
28 lines (28 loc) · 782 Bytes
/
edit.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>React Quiz Builder</title>
<script src="react-0.13.3/build/react.js"></script>
<script src="react-0.13.3/build/JSXTransformer.js"></script>
<link rel="stylesheet" href="./src/css/bootstrap.min.css">
<link rel="stylesheet" href="./src/css/app.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>React Quiz Builder</h1>
</div>
</div>
<div class="row">
<div class="col-md-12">
<form id="content" action="quiz.php" method="post"></form>
</div>
</div>
</div>
<script src="./src/js/jquery-1.11.3.min.js"></script>
<script src="./src/js/bootstrap.min.js"></script>
<script type="text/jsx" src="src/js/quiz.js"></script>
</body>
</html>