-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.html
71 lines (66 loc) · 3.52 KB
/
example.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="Scripts/jquery.jcryption.3.1.0.js"></script>
<script type="text/javascript">
$(function () {
$("#normal").jCryption({
getKeysURL: "example.aspx?getPublicKey=true",
handshakeURL: "example.aspx?handshake=true"
});
});
</script>
</head>
<body>
<form id="normal" class="general" action="example.aspx" method="post">
<fieldset>
<table border="0" cellspacing="5" cellpadding="0">
<tbody>
<tr>
<td>Sex:</td>
<td>
<input class="radio" name="Sex" type="radio" value="male" checked="checked" />Male
<input class="radio" name="Sex" type="radio" value="female" />Female
</td>
</tr>
<tr>
<td>Firstname:</td>
<td><input class="text" name="Firstname" type="text" value="John" /></td>
</tr>
<tr>
<td>Lastname:</td>
<td><input class="text" name="Lastname" type="text" value="Wayne" /></td>
</tr>
<tr>
<td>E-Mail:</td>
<td><input class="text" name="Email" type="text" value="[email protected]" /></td>
</tr>
<tr>
<td>What would you like to eat?</td>
<td>
<input class="checkbox" name="Food[]" type="checkbox" value="pizza" checked="checked" />Pizza
<input class="checkbox" name="Food[]" type="checkbox" value="hamburger" />Hamburger
<input class="checkbox" name="Food[]" type="checkbox" value="salad" checked="checked" />Salad
<input class="checkbox" name="Food[]" type="checkbox" value="steak" />Steak
</td>
</tr>
<tr>
<td>Age:</td>
<td><select name="age"> <option value="under 18" selected="selected">under 18</option> <option value="over 18">over 18</option> <option value="over 30">over 30</option> </select></td>
</tr>
<tr valign="top">
<td valign="top">I like (you can select more than one):</td>
<td><select name="likes[]" size="5" multiple="multiple"> <option value="Michael Jackson">Michael Jackson</option> <option value="rainy wheater" selected="selected">rainy wheater</option> <option value="a hot summer">a hot summer</option> <option value="small cats" selected="selected">small cats</option> <option value="funny movies">funny movies</option> <option value="I like everything" selected="selected">I like everything</option> </select></td>
</tr>
<tr>
<td></td>
<td><input title="Submit" alt="Submit" name="submitButton" type="submit" value="Submit" class="submit" /> <input title="Reset" alt="Reset" name="reset" type="reset" value="Reset" /></td>
</tr>
</tbody>
</table>
</fieldset>
</form>
</body>
</html>