-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathedit.html
executable file
·85 lines (70 loc) · 1.7 KB
/
edit.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
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>User Manager</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap-theme.min.css">
<style>
.bold {
font-weight:bold;
}
.margin-top-20 {
margin-top:20px;
}
.small-container {
width:700px;
margin-left:auto;
margin-right:auto;
}
.txt-right {
text-align:right;
}
</style>
</head>
<body>
<div class="small-container">
<h1>User Manager</h1>
<div>
<a href="#" class="btn btn-primary">Back</a>
</div>
</div>
<div class="small-container margin-top-20">
<div class="well">
<div class="bold">
First Name
</div>
<div class="margin-top-20">
<input type="text" class="form-control" />
</div>
<div class="bold margin-top-20">
Last Name
</div>
<div class="margin-top-20">
<input type="text" class="form-control" />
</div>
<div class="bold margin-top-20">
Username
</div>
<div class="margin-top-20">
<input type="text" class="form-control" />
</div>
<div class="bold margin-top-20">
Email
</div>
<div class="margin-top-20">
<input type="text" class="form-control" />
</div>
<div class="margin-top-20 txt-right">
<a href="#" class="btn btn-default">Cancel</a>
<button type="submit" class="btn btn-primary">Edit User</button>
</div>
</div>
</div>
<!--jQuery-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
</body>
</html>