-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (58 loc) · 1.75 KB
/
index.html
File metadata and controls
63 lines (58 loc) · 1.75 KB
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
<html>
<head>
<title>CodeReview</title>
<!-- CSS -->
<link href="include/CodeMirror/lib/codemirror.css" rel="stylesheet">
<link href="view.css" rel="stylesheet">
<!-- JS -->
<script src="js/jquery-1.7.2.min.js"></script>
<script src="include/URI.js"></script>
<script src="include/CodeMirror/lib/codemirror.js"></script>
<script src="index.js"></script>
<script src="include/ace/ace.js"></script>
</head>
<body>
<h1><a href="index.html">CodeReview</a></h1>
<div id="error"></div>
Insert the code you would like reviewed then
hit submit, and share the url with your reviewers.
<form action="/do/newcode" method="POST" enctype="multipart/form-data">
<div class="column">
<textarea id="code" name="text" cols="80" class="pre"
style="height:90%;font-size:14pt"></textarea><br>
</div>
<div class="column">
<div>
<label for="title">Title:</label>
<input type="text" name="title" value="Untitled"/>
</div>
<div>
<label for="language_id">Syntax Highlighting:</label>
<select id="language_id" name="language_id" ></select>
</div>
<div>
<label for="parent">Parent Code:</label>
<input type="text" name="parent"
placeholder="leave blank if new"/>
</div>
<div>
<label for="customId">Custom ID:</label>
<input type="text" name="customId"
placeholder="leave blank for random ID"/>
</div>
<div>
<label for="encryption">Encrypt Page:</label>
<input type="checkbox" name="encryption" id="encryption"/>
<br>
</div>
<div id="encryptDiv">
<label for="password">Password:</label>
<input type="password" name="password" />
</div>
<div>
<input type="submit" />
</div>
</div>
</form>
</body>
</html>