-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-profile.html.bak
121 lines (99 loc) · 3.78 KB
/
user-profile.html.bak
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, minimal-ui">
<title>Cryptex - Crypto Exchange Wallet Premium Mobile Template</title>
<link rel="stylesheet" href="vendor/swiper/swiper.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<!-- Overlay panel -->
<div class="body-overlay"></div>
<!-- Left panel -->
<div id="panel-left"></div>
<div class="page page--main" data-page="profile">
<!-- HEADER -->
<header class="header header--fixed">
<div class="header__inner">
<div class="header__icon"><a href="main.html"><img src="images/icons/arrow-back.svg" alt="image" title="image"/></a></div>
</div>
</header>
<!-- PAGE CONTENT -->
<div class="page__content">
<div class="user-profile mb-20">
<div class="user-profile__thumb"><img src="images/photos/avatar-5.jpg" alt="" title=""/></div>
<div class="user-profile__name">Cheathan Chinnappa</div>
<div class="buttons buttons--centered">
<a href="forms.html" class="button button--main button--ex-small ml-10">EDIT ACCOUNT</a>
</div>
</div>
<div class="page__title-bar">
<h3>Settings</h3>
</div>
<div class="fieldset">
<div class="form">
<form id="Form" method="post" action="">
<h3 class="pb-20 pt-20">Notifications</h3>
<div class="form__row">
<div class="switch">
<label>Enable:</label>
<input type="checkbox" hidden="hidden" id="enable">
<label class="switch__label" for="enable"></label>
</div>
</div>
<h3 class="pb-20 pt-20">Language</h3>
<div class="form__row">
<div class="form__select">
<select name="selectoptions" class="required">
<option value="" disabled selected>English</option>
<option value="1">select one</option>
<option value="2">select two</option>
<option value="3">select three</option>
<option value="4">select four</option>
<option value="5">select five</option>
</select>
</div>
</div>
<h3 class="pb-20 pt-20">Payment Currency</h3>
<div class="radio-option">
<input type="radio" name="radioption1" id="op4" value="1" checked /><label for="op4">$</label>
</div>
<div class="radio-option">
<input type="radio" name="radioption1" id="op5" value="2" /><label for="op5">€</label>
</div>
<div class="radio-option">
<input type="radio" name="radioption1" id="op6" value="3" /><label for="op6">&inr;</label>
</div>
<h3 class="pb-20 pt-20">Simple agree checkbox</h3>
<div class="form__row">
<div class="checkbox-simple">
<input type="checkbox" name="agree" id="agree" value="agree" checked /><label for="agree">Agree Terms & Conditions</span></label>
</div>
</div>
<div class="form__row mt-40">
<input type="submit" name="submit" class="form__submit button button--main button--full" id="submit" value="SAVE OPTIONS" />
</div>
</form>
</div>
</div>
</div>
</div>
<!-- PAGE END -->
<!-- Social Icons Popup -->
<div id="popup-social"></div>
<!-- Alert -->
<div id="popup-alert"></div>
<!-- Notifications -->
<div id="popup-notifications"></div>
<script src="vendor/jquery/jquery-3.5.1.min.js"></script>
<script src="vendor/jquery/jquery.validate.min.js" ></script>
<script src="vendor/swiper/swiper.min.js"></script>
<script src="js/swiper-init.js"></script>
<script src="js/jquery.custom.js"></script>
<script src="js/header-scroll.js"></script>
</body>
</html>