-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
102 lines (91 loc) · 4.07 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Page</title>
<!-- CSS -->
<link rel="stylesheet" href="settings.css">
<!-- Boxicons CSS -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<section class="container forms">
<div class="form login">
<div class="form-content">
<header>Settings</header>
<div class="card overflow-hidden">
<div class="row no-gutters row-bordered row-border-light">
<div class="col-md-9">
<div class="tab-content">
<div class="tab-pane fade active show" id="account-general">
<div class="card-body media align-items-center">
<div>
<img src="images/avatar-removebg-preview.png"alt="Profile picture" class="profile_img">
</div>
<!-- <img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="" class="d-block ui-w-80" class="prof_img">-->
<div class="media-body ml-4">
<label class="btn btn-outline-primary">
Upload new photo <br>
<input type="file" class="account-settings-fileinput">
</label>
<button type="button" class="btn btn-default md-btn-flat">Reset</button>
<!-- <div class="text-light small mt-1">Allowed JPG, GIF or PNG. Max size of 800K</div>-->
<!-- </div>-->
</div>
<br>
<hr class="border-light m-0">
<br>
<div class="card-body">
<div class="form-group">
<label class="form-label">Name</label>
<input type="text" class="form-control" value="Nelle Maxwell">
</div>
<div class="form-group">
<label class="form-label">E-mail</label>
<input type="text" class="form-control mb-1" value="[email protected]">
<!-- <div class="alert alert-warning mt-3">-->
<!-- Your email is not confirmed. Please check your inbox.<br>-->
<!-- <a href="javascript:void(0)">Resend confirmation</a>-->
<!-- </div>-->
</div>
<br>
<h4 class="mb-4">Contacts</h4>
<div class="form-group">
<label class="form-label">Phone</label>
<input type="text" class="form-control" value="+0 (123) 456 7891">
</div>
<br>
<div class="form-group">
<h4>Change Password</h4>
</div>
</div>
</div>
<div class="tab-pane fade" id="account-change-password">
<div class="card-body pb-2">
<div class="form-group">
<label class="form-label">Current password</label>
<input type="password" class="form-control">
</div>
<div class="form-group">
<label class="form-label">New password</label>
<input type="password" class="form-control">
</div>
<div class="form-group">
<label class="form-label">Repeat new password</label>
<input type="password" class="form-control">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-right mt-3">
<button type="button" class="btn btn-primary">Save changes</button>
<button type="button" class="btn btn-default">Cancel</button>
</div>
</div>
</section>
</body>
</html>