-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreferenceform.html
More file actions
76 lines (53 loc) · 2.13 KB
/
referenceform.html
File metadata and controls
76 lines (53 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no"/>
<head>
<link rel="stylesheet" type="text/css" href="css/referenceform.css">
<p> R_Block Reference</p>
</head>
<body>
<div class="outer">
<div class="middle">
<div class="inner">
<div id="Candidate">Candidate</div>
<div id="Referee">Referee</div>
<form id="test-form">
<div>
<label class="label"></label>
<input type="hidden" id ="form_field_1" name="form_field_1" placeholder="Candidate ID"/>
</div>
<div>
<div class="label" id="Q1">...</div>
<textarea id ="form_field_2" name="form_field_2" type="text" placeholder=""></textarea>
<input type="hidden" id ="form_field_3" name="form_field_3" placeholder="Question ID"/>
</div>
<div>
<div class="label" id="Q2">...</div>
<textarea id ="form_field_4" name="form_field_4" type="text" placeholder=""></textarea>
<input type="hidden" id ="form_field_5" name="form_field_5" placeholder="Question ID"/>
</div>
<div>
<div class="label" id="Q3">...</div>
<textarea id ="form_field_6" name="form_field_6" type="text" placeholder=""></textarea>
<input type="hidden" id ="form_field_7" name="form_field_7" placeholder="Question ID"/>
</div>
<div>
<div class="label" id="Q4">...</div>
<textarea id ="form_field_8" name="form_field_8" type="text" placeholder=""></textarea>
<input type="hidden" id ="form_field_9" name="form_field_9" placeholder="Question ID"/>
<input type="hidden" id ="form_field_10" name="form_field_10" placeholder="Candidate"/>
<input type="hidden" id ="form_field_11" name="form_field_11" placeholder="Referee"/>
</div>
<div>
<input type="submit" id="submit-form" onclick="" value="Submit">
</div>
</form>
<div id="Note"> <br></br> Sent securely to luke@rblock.co</div>
</div>
</div>
</div>
<script src="js/md5.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/jquery.serialize-object.min.js"></script>
<script src="js/referenceform.js"></script>
</body>
</html>