-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
73 lines (73 loc) · 2.05 KB
/
form.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
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<title>pui</title>
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="lib/font-awesome/4.6.3/font-awesome.css">
<script src="lib/jquery/1.9.1/jquery.min.js"></script>
<script src="js/global.js"></script>
<style>
.box {
padding: 20px;
}
</style>
</head>
<body>
<div class="container">
<form class="box">
<div class="control label-left">
<label><i class="fa fa-user"></i></label>
<input class="input" type="text" placeholder="请输入username">
<p class="help-text">中文字符</p>
</div>
<div class="control">
<label>姓名:</label>
<input class="input" type="text" placeholder="请输入username">
<p class="help-text">中文字符</p>
</div>
<div class="control">
<label>性别:</label>
<div class="select">
<select>
<option>1</option>
<option>2</option>
</select>
</div>
<p class="help-text">中文字符</p>
</div>
<div class="control">
<label>我想说:</label>
<textarea class="textarea" placeholder="请输入username"></textarea>
<p class="help-text">中文字符</p>
</div>
<div class="control">
<label>支付方式:</label>
<div class="radio">
<input type="radio" name="payment">
<label for="payment">微信</label>
</div>
<div class="radio">
<input type="radio" name="payment">
<label for="payment">微信</label>
</div>
<p class="help-text">中文字符</p>
</div>
<div class="control">
<label>送货方式:</label>
<div class="checkbox">
<input type="checkbox" name="shiping">
<label for="shiping">快递</label>
</div>
<div class="checkbox">
<input type="checkbox" name="shiping">
<label for="shiping">包邮</label>
</div>
<p class="help-text">中文字符</p>
</div>
</form>
</div>
</body>
</html>