-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.php
More file actions
262 lines (254 loc) · 9.45 KB
/
Copy pathprofile.php
File metadata and controls
262 lines (254 loc) · 9.45 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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="assets/profile.css">
<link rel="stylesheet" href="assets/style.css?v=7">
<title>GROWI</title>
</head>
<body>
<div class="top_header">
<i class="ri-menu-line"></i>
<i class="ri-notification-3-line"></i>
</div>
<section class="py-5 my-5">
<div class="container">
<h1 class="mb-5">Account Settings</h1>
<div class="bg-white shadow rounded-lg d-block d-sm-flex">
<div class="profile-tab-nav border-right">
<div class="p-4">
<div class="img-circle text-center mb-3">
<img src="" alt="Image" class="shadow">
</div>
<h4 class="text-center">Nandhu</h4>
</div>
<div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
<a class="nav-link active1" id="account-tab" data-toggle="pill" href="#account" role="tab" aria-controls="account" aria-selected="true">
<i class="fa fa-home text-center mr-1"></i>
Account
</a>
<a class="nav-link" id="password-tab" data-toggle="pill" href="#password" role="tab" aria-controls="password" aria-selected="false">
<i class="fa fa-key text-center mr-1"></i>
Password
</a>
<a class="nav-link" id="security-tab" data-toggle="pill" href="#security" role="tab" aria-controls="security" aria-selected="false">
<i class="fa fa-user text-center mr-1"></i>
Security
</a>
<a class="nav-link" id="application-tab" data-toggle="pill" href="#application" role="tab" aria-controls="application" aria-selected="false">
<i class="fa fa-tv text-center mr-1"></i>
Withdrawals
</a>
<a class="nav-link" id="notification-tab" data-toggle="pill" href="#notification" role="tab" aria-controls="notification" aria-selected="false">
<i class="fa fa-bell text-center mr-1"></i>
Languages
</a>
</div>
</div>
<div class="tab-content p-4 p-md-5" id="v-pills-tabContent">
<div class="tab-pane fade show active1" id="account" role="tabpanel" aria-labelledby="account-tab">
<h3 class="mb-4">Account Settings</h3>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>First Name</label>
<input type="text" class="form-control" value="Nandu">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Last Name</label>
<input type="text" class="form-control" value="S">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Email</label>
<input type="text" class="form-control" value="1234@gmail.com">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Phone number</label>
<input type="text" class="form-control" value="9156236548">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Company</label>
<input type="text" class="form-control" value="Makeaton">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Designation</label>
<input type="text" class="form-control" value="UI Developer">
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<label>Bio</label>
<textarea class="form-control" rows="4">Lorem ipsum dolor sit amet consectetur adipisicing elit. Labore vero enim error similique quia numquam ullam corporis officia odio repellendus aperiam consequatur laudantium porro voluptatibus, itaque laboriosam veritatis voluptatum distinctio!</textarea>
</div>
</div>
</div>
<div>
<button class="btn btn-primary">Update</button>
<button class="btn btn-light">Cancel</button>
</div>
</div>
<div class="tab-pane fade active1" id="password" role="tabpanel" aria-labelledby="password-tab">
<h3 class="mb-4">Password Settings</h3>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Old password</label>
<input type="password" class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>New password</label>
<input type="password" class="form-control">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Confirm new password</label>
<input type="password" class="form-control">
</div>
</div>
</div>
<div>
<button class="btn btn-primary">Update</button>
<button class="btn btn-light">Cancel</button>
</div>
</div>
<div class="tab-pane active1 fade" id="security" role="tabpanel" aria-labelledby="security-tab">
<h3 class="mb-4">Security Settings</h3>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Login</label>
<input type="text" class="form-control">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Two-factor auth</label>
<input type="text" class="form-control">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="recovery">
<label class="form-check-label" for="recovery">
Recovery
</label>
</div>
</div>
</div>
</div>
<div>
<button class="btn btn-primary">Update</button>
<button class="btn btn-light">Cancel</button>
</div>
</div>
<div class="tab-pane fade active1" id="application" role="tabpanel" aria-labelledby="application-tab">
<h3 class="mb-4">Withdrawals</h3>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="app-check">
<label class="form-check-label" for="app-check">
Bank Transactions
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck2" >
<label class="form-check-label" for="defaultCheck2">
GROWI Wallet
</label>
</div>
</div>
</div>
</div>
<div>
<button class="btn btn-primary">Update</button>
<button class="btn btn-light">Cancel</button>
</div>
</div>
<div class="tab-pane fade active1" id="notification" role="tabpanel" aria-labelledby="notification-tab">
<h3 class="mb-4">Language Settings</h3>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="notification1">
<label class="form-check-label" for="notification1">
Malayalam
</label>
</div>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="notification2" >
<label class="form-check-label" for="notification2">
Hindi
</label>
</div>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="notification3" >
<label class="form-check-label" for="notification3">
Kanada
</label>
</div>
</div>
<div>
<button class="btn btn-primary">Update</button>
<button class="btn btn-light">Cancel</button>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="foot_nav">
<div class="footer_icon">
<a href="index.php">
HOME
<i class="ri-home-3-line"></i>
</a>
</div>
<div class="footer_icon">
<a href="portfolio.php">
PORTFOLIO
<i class="ri-briefcase-3-fill"></i>
</a>
</div>
<div class="footer_icon">
<a href="profile.php" class="active-foot">
PROFILE
<i class="ri-profile-line"></i>
</a>
</div>
<div class="footer_icon">
<a href="help.php">
LEADER BOARD
<i class="ri-questionnaire-line"></i>
</a>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</html>