forked from PoojaMittal2842/Delhi-Tourism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
96 lines (78 loc) · 3.81 KB
/
page.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
<!DOCTYPE html>
<!--This Page should be having a good UI with usage of frameworks like Bootstrap. This page is the profile page for users
Details about page:
Profile Picture
Name
Age
Email
Phone number
Recent contributions ( the number of places he/she has added)
Update Button-->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>User Profile Page</title>
<meta name="author" content="SitePoint" />
<link rel="stylesheet" media="screen" href="Assets/css/style.css" />
</head>
<body>
<div class="container">
<div class="row m-y-2">
<div class="col-lg-8 push-lg-4">
<img src="Assets/images/Roadway.jpg" class="img" >
<div class="tab-content p-b-3">
<div class="tab-pane active" id="profile">
<h4 class="m-y-2" style="font-size: 26px;">User Profile</h4><hr>
<div class="col-md-12">
<div class="tab-pane" id="edit">
<form role="form">
<div class="col-lg-4 pull-lg-8 text-xs-center">
<p><input type="file" accept="image/*" name="image" id="file" onchange="loadFile(event)" style="display: none;"></p>
<p><label for="file" style="cursor: pointer;">Upload Image</label></p>
<p><img id="output" width="250" height="250" /></p>
</div>
<div class="form-group row">
<label class="col-lg-3 col-form-label form-control-label" style="font-size: 20px;"><h2>Name</h2></label>
<div class="col-lg-9">
<input class="form-control" type="text" value="">
</div>
</div>
<div class="form-group row">
<label class="col-lg-3 col-form-label form-control-label" style="font-size: 20px;"><h2>Age</h2></label>
<div class="col-lg-9">
<input class="form-control" type="Number" value="">
</div>
</div>
<div class="form-group row">
<label class="col-lg-3 col-form-label form-control-label" style="font-size: 20px;"><h2>Email</h2></label>
<div class="col-lg-9">
<input class="form-control" type="email" value="" id="email" size="30" required>
</div>
</div>
<div class="form-group row">
<label class="col-lg-3 col-form-label form-control-label" style="font-size: 20px;"><h2>Phone Number</h2></label>
<div class="col-lg-9">
<input class="form-control" input type="tel" id="phone" name="phone">
</div>
<div class="form-group row">
<label class="col-lg-3 col-form-label form-control-label" style="font-size: 20px;"><h2>Recent Contributions</h2></label>
<div class="col-lg-9">
<input class="form-control" type="number" value="" ><br><br>
</div>
</div>
<hr>
<div class="form-group row">
<label class="col-lg-3 col-form-label form-control-label"></label>
<div class="col-lg-10">
<button onclick="UpdateData()" class="button">Update</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="Assets/js/script.js"></script>
</body>
</html>