-
Notifications
You must be signed in to change notification settings - Fork 0
/
setting.html
117 lines (113 loc) · 3.95 KB
/
setting.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
<!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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="./src/css/style.css">
<link rel="stylesheet" href="./src/css/profile.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Go Coup</title>
</head>
<body>
<div class="header">
<div class="container">
<div class="navigation">
<div class="left">
<div class="nav-btn">
<a href="/">
<img class="logo" src="./src/images/logo-white.png" alt="logo">
</a>
</div>
</div>
<div class="right">
<div class="nav-btn">
<a href="/profile.html">
Profile
<img class="logo-nav" src="./src/images/profile.png" alt="">
</a>
</div>
<div class="nav-btn">
<img class="logo-nav" src="./src/images/cart.png" alt="">
</div>
</div>
</div>
</div>
</div>
<div class="full-container">
<div class="container">
<div class="profile-nav">
<a class="profile-nav-btn" href="/profile.html">
profile
</a>
<a class="profile-nav-btn" href="/profile.html">
wallet
</a>
<div class="profile-image-wrapper">
<img class="profile-image" src="https://www.what-dog.net/Images/faces2/scroll001.jpg" alt=" profile">
</div>
<a class="profile-nav-btn" href="/profile.html">
coupon
</a>
<a class="profile-nav-btn" href="/profile.html">
setting
</a>
</div>
<div class="container">
<form action="">
<div class="form-group row">
<div class="col-md-6 col-xs-12">
<label for="usr">Name:</label>
<input type="text" class="form-control" id="name" name="name">
</div>
<div class="col-md-6 col-xs-12">
<label for="usr">Birthday:</label>
<input type="text" class="form-control" id="lastname" name="lastname">
</div>
</div>
<div class="form-group row">
<div class="col-md-6 col-xs-12">
<label for="usr">Lastname:</label>
<input type="date" class="form-control" id="birthday" name="birthday">
</div>
<div class="col-md-6 col-xs-12">
<label for="usr">Tel:</label>
<input type="password" class="form-control" id="password" name="password">
</div>
</div>
<div class="form-group row">
<div class="col-md-6 col-xs-12">
<label for="usr">Password:</label>
<input type="password" class="form-control" id="password" name="password">
</div>
<div class="col-md-6 col-xs-12">
<label for="usr">Email:</label>
<input type="password" class="form-control" id="password" name="password">
</div>
</div>
<div class="form-group row">
<div class="col-md-6 col-xs-12">
<label for="usr">Confirm Password:</label>
<input type="password" class="form-control" id="confirm" name="confirm">
</div>
</div>
<div class="form-group row">
<div class="col-md-4 col-xs-12">
<input type="submit" class="btn btn-gocoup" value="Submit">
</div>
</div>
</form>
</div>
</div>
</div>
<div class="footer">
<div class="container">
<div class="footer-right">
<div class="nav-btn">contact us</div>
</div>
</div>
</div>
</body>
</html>