-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
42 lines (30 loc) · 1.27 KB
/
index.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Browserify Example with Star Wars</title>
</head>
<body>
<h1>In a galaxy far, far away...</h1>
<p id="message"></p>
<button id="btn-checkobject">Check Star Wars Object</button>
<button id="btn-lightlist">Get Light Side Players</button>
<button id="btn-darklist">Get Dark Side Players</button>
<button id="btn-getRLocation">Count Dooku wants the Resistance Location</button>
<button id="btn-removeanakin">Switch Anakin To Dark</button>
<button id="btn-removeobiwan">Obi Wan Dies</button>
<hr>
<h2>May the Force be with you:</h2>
<label>Name:</label><input id="newperson" type="text" value="chief">
<p>Choose your affiliation:</p>
<input type="radio" name="whichside" value="1" checked>Good<br>
<input type="radio" name="whichside" value="2">Evil<br>
<input type="radio" name="whichside" value="0">Jedi<br>
<button id="btn-signup">Sign Up</button>
<hr>
<!-- <script type="text/javascript" src="javascripts/dark.js"></script>
<script type="text/javascript" src="javascripts/light.js"></script>
<script type="text/javascript" src="javascripts/main.js"></script> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="dist/app.js"></script>
</body>
</html>