-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (47 loc) · 1.7 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
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>The Clojalyzer</title>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/forkme.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="github-fork-ribbon-wrapper right">
<div class="github-fork-ribbon">
<a href="https://github.com/mattfenwick/Clojalyzer">Fork me on GitHub</a>
</div>
</div>
<h1>The Clojalyzer</h1>
<div class="step">
<div class="instructions">Step 1: choose a Github repository with Clojure code</div>
<table>
<tr>
<td>Github username</td>
<td><input id="githubuser" /></td>
</tr>
<tr>
<td>Repository name</td>
<td><input id="githubrepo" /></td>
</tr>
<tr>
<td>Branch name</td>
<td><input id="githubbranch" /></td>
</tr>
<tr>
<td></td>
<td><button id="clojalyze">Clojalyze!</button></td>
</tr>
</table>
</div>
<div class="step">
<div class="instructions">Step 2: choose a Clojure file to analyze</div>
<div id="input"></div>
</div>
<div class="step">
<div class="instructions">Step 3: peruse the documentation of the top-level functions</div>
<div id="output"></div>
</div>
<script src="build/bundle.js"></script>
</body>
</html>