forked from Linghui/linking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
advice.html
executable file
·38 lines (38 loc) · 1.06 KB
/
advice.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
<html>
<head>
<title>
Advice
</title>
<script src="js/jquery.min.js" type="text/javascript">
</script>
<script src="js/advice.js" type="text/javascript">
</script>
<script language="Javascript" type="text/javascript">
</script>
<link rel="stylesheet" href="css/buttons.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
My email : [email protected]
</br>
<div class='advice_div'>
Hate:
<input id="ad_kind" type="radio" name="ad_kind" value="hate" />
Like:
<input id="ad_kind" type="radio" name="ad_kind" value="like" checked="checked"/>
Suggest:
<input id="ad_kind" type="radio" name="ad_kind" value="suggest" />
</br>
Name (not necessary) : <input id="name" type="text" style='margin-top:20px;'/>
</br>
Email(not necessary) : <input id="email" type="text" />
</br>
</br>
<textarea id="content" rows="8" cols="50">
</textarea>
</br>
<a href="#" class="button submit" onclick='submit();'>submit</a>
<img src="images1/activity_indicator.gif" style="display:none" id='act_icon' />
</div>
</body>
</html>