-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccounts.php
More file actions
91 lines (91 loc) · 2.8 KB
/
accounts.php
File metadata and controls
91 lines (91 loc) · 2.8 KB
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
<div class="container mt-5">
<div class="row tm-content-row">
<div class="tm-block-col tm-col-avatar">
<div class="tm-bg-primary-dark tm-block tm-block-avatar">
<h2 class="tm-block-title">Change Avatar</h2>
<div class="tm-avatar-container">
<img
src="./assets/img/avatar.png"
alt="Avatar"
class="tm-avatar img-fluid mb-4"
/>
<a href="#" class="tm-avatar-delete-link">
<i class="far fa-trash-alt tm-product-delete-icon"></i>
</a>
</div>
<button class="btn btn-primary btn-block text-uppercase">
Upload New Photo
</button>
</div>
</div>
<div class="tm-block-col tm-col-account-settings">
<div class="tm-bg-primary-dark tm-block tm-block-settings">
<h2 class="tm-block-title">Account Settings</h2>
<form action="" class="tm-signup-form row">
<div class="form-group col-lg-6">
<label for="name">Account Name</label>
<input
id="name"
name="name"
type="text"
class="form-control validate"
/>
</div>
<div class="form-group col-lg-6">
<label for="email">Account Email</label>
<input
id="email"
name="email"
type="email"
class="form-control validate"
/>
</div>
<div class="form-group col-lg-6">
<label for="password">Password</label>
<input
id="password"
name="password"
type="password"
class="form-control validate"
/>
</div>
<div class="form-group col-lg-6">
<label for="password2">Re-enter Password</label>
<input
id="password2"
name="password2"
type="password"
class="form-control validate"
/>
</div>
<div class="form-group col-lg-6">
<label for="phone">Phone</label>
<input
id="phone"
name="phone"
type="tel"
class="form-control validate"
/>
</div>
<div class="form-group col-lg-6">
<label class="tm-hide-sm"> </label>
<button
type="submit"
class="btn btn-primary btn-block text-uppercase"
>
Update Your Profile
</button>
</div>
<div class="col-12">
<button
type="submit"
class="btn btn-primary btn-block text-uppercase"
>
Delete Your Account
</button>
</div>
</form>
</div>
</div>
</div>
</div>