-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
176 lines (156 loc) · 7.53 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Bootstrap Theme</title>
</head>
<body>
<!-- START HERE -->
<nav class="navbar navbar-expand-sm navbar-dark bg-dark p-0">
<div class="container">
<a href="index.html" class="navbar-brand">Dash</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav">
<li class="nav-item px-2">
<a href="index.html" class="nav-link ">Dashboard</a>
</li>
<li class="nav-item px-2">
<a href="posts.html" class="nav-link ">Posts</a>
</li>
<li class="nav-item px-2">
<a href="categories.html" class="nav-link ">Categories</a>
</li>
<li class="nav-item px-2">
<a href="users.html" class="nav-link ">Users</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown mr-3">
<a href="" class="nav-link dropdown-toggle" data-toggle="dropdown">
<i class="fas fa-user"></i> Welcome Morgan
</a>
<div class="dropdown-menu">
<a href="profile.html" class="dropdown-item">
<i class="fas fa-user-circle"></i> Profile</a>
<a href="settings.html" class="dropdown-item">
<i class="fas fa-cog"></i> Settings</a>
</div>
</li>
<li class="nav-item">
<a href="login.html" class="nav-link">
<i class="fas fa-user-times"></i> Log Out
</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Header-->
<header id="main-header" class="py-2 bg-primary text-white">
<div class="container">
<div class="row">
<div class="col-md-6">
<h1>
<i class="fas fa-User"></i>Edit Profile</h1>
</div>
</div>
</div>
</header>
<!--Actions-->
<section id="actions" class="py-4 mb-4 bg-light">
<div class="container">
<div class="row">
<div class="col-md-3">
<a href="index.html" class="btn btn-light btn-block">
<i class="fas fa-arrow-left"></i> Back to Dashboard</a>
</div>
<div class="col-md-3">
<a href="index.html" class="btn btn-success btn-block">
<i class="fas fa-lock"></i> Change Password</a>
</div>
<div class="col-md-3">
<a href="index.html" class="btn btn-danger btn-block" data-toggle="modal" data-target="#addUserModal">
<i class="fas fa-trash"></i> Delete Account </a>
</div>
</div>
</div>
</section>
<!--Profile-->
<section id="profile">
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="card">
<div class="card-header">
<h4>Edit Profile</h4>
</div>
<div class="card-body">
<form>
<div class="form-group">
<label for="title">Name</label>
<input type="text" class="form-control" placeholder="John Smith">
</div>
<div class="form-group">
<label for="title">Email</label>
<input type="text" class="form-control" placeholder="John.Smith@gmail.com">
</div>
<div class="form-goup">
<label for="body">Bio</label>
<textarea name="editor" class="form-control">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Doloremque perferendis provident recusandae ad reprehenderit, id ipsum ratione minima in a officia tempore maiores, nemo quaerat rem est odit delectus dolor.</textarea>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card " id="profileCard" >
<img class="card-img-top" src="img/avatar.png" alt="Card image cap">
<h4 class="card-header"> Your Avatar</h4>
<div class="card-body">
<p class="card-text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Expedita, modi esse ad quaerat reprehenderit dolorum..</p>
<a href="#" class="btn btn-primary btn-block">Edit Image</a>
<a href="#" class="btn btn-danger btn-block">Delete Image</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Footer-->
<footer id="main-footer" class="bg-dark text-white mt-3 p-3">
<div class="container">
<div class="row">
<div class="col">
<p class="lead text-center">
Copyright ©
<span id="year"></span>
</p>
</div>
</div>
</div>
</footer>
<script src="http://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T"
crossorigin="anonymous"></script>
<script src="https://cdn.ckeditor.com/4.10.0/standard/ckeditor.js"></script>
<script>
// Get the current year for the copyright
$('#year').text(new Date().getFullYear());
// textarea editor
CKEDITOR.replace('editor');
</script>
</body>
</html>