-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.html
84 lines (77 loc) · 2.67 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<link href="css/style.css" rel="stylesheet"/>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">
Fixed Top
</a>
<p class="navbar-text pull-right">
<a href="#" class="navbar-link">
<span class="glyphicon glyphicon-plus">
</span>
</a>
</p>
</div>
</div>
</nav>
<div class="container">
<h1>Profile</h1>
<form>
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" id="username" placeholder="Username">
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" placeholder="[email protected]">
</div>
<div class="form-group">
<label for="first-name">First Name</label>
<input type="text" class="form-control" id="first-name" placeholder="Alice">
</div>
<div class="form-group">
<label for="last-name">Last Name</label>
<input type="text" class="form-control" id="last-name" placeholder="Wonderland">
</div>
</form>
<a class="btn btn-primary btn-block"
href="website-list.html">Websites</a>
<a class="btn btn-danger btn-block"
href="login.html">Logout</a>
</div>
<nav class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<div class="row navbar-text">
<div class="col-xs-3 text-center">
<a href="#">
<span class="glyphicon glyphicon-ok"></span>
</a>
</div>
<div class="col-xs-3 text-center">
<a href="#">
<span class="glyphicon glyphicon-plus"></span>
</a>
</div>
<div class="col-xs-3 text-center">
<a href="#">
<span class="glyphicon glyphicon-star"></span>
</a>
</div>
<div class="col-xs-3 text-center">
<a href="#">
<span class="glyphicon glyphicon-heart"></span>
</a>
</div>
</div>
</div>
</nav>
</body>
</html>