-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
64 lines (56 loc) · 2.63 KB
/
settings.html
File metadata and controls
64 lines (56 loc) · 2.63 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
<head>
<link rel="stylesheet" href="settings.css">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-10 col-xl-8 mx-auto">
<h2 class="h3 mb-4 page-title">Settings</h2>
<div class="my-4">
<form>
<div class="row mt-5 align-items-center">
<div class="col-md-3 text-center mb-5">
<div class="avatar avatar-xl">
<img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="..." class="avatar-img rounded-circle" />
</div>
</div>
<div class="col">
<div class="row align-items-center">
<div class="col-md-7">
</div>
</div>
</div>
</div>
<hr class="my-4" />
<div class="form-row">
<div class="form-group col-md-6">
<label for="firstname">Firstname</label>
<input type="text" id="firstname" class="form-control" placeholder="Arpit" />
</div>
<div class="form-group col-md-6">
<label for="lastname">Lastname</label>
<input type="text" id="lastname" class="form-control" placeholder="Singh" />
</div>
</div>
<div class="form-group">
<label for="inputEmail4">Email</label>
<input type="email" class="form-control" id="inputEmail4" placeholder="arpit@mail.com" />
</div>
<div class="form-group">
<label for="age">Age</label>
<input type="number" class="form-control" id="inputAge5" placeholder="69" />
</div>
<div class="form-group">
<label for="Height">Height(cm)</label>
<input type="number" class="form-control" id="inputHeight5" placeholder="169" />
</div>
<div class="form-group">
<label for="Weight">Weight(Kg)</label>
<input type="number" class="form-control" id="inputWeight5" placeholder="69" />
</div>
<hr class="my-4" />
<button type="submit" class="btn btn-primary">Save Changes</button>
</form>
</div>
</div>
</div>
</div>
</head>