-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateprofile.ejs
More file actions
72 lines (71 loc) · 2.51 KB
/
updateprofile.ejs
File metadata and controls
72 lines (71 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Update</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<style>
body
{
background-image:url("updatewala1.jpg");
padding: 0;
margin: 0;
}
h2
{
position: relative;
left:500px;
}
</style>
</head>
<body>
<div class="container">
<h1 style="color: white">UPDATION FORM FOR <%= profileData.name %> </h1>
<br>
<br>
<form class="form-horizontal" action="/updated" method="post">
<div class="form-group">
<label class="control-label col-sm-2" for="email">Name:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="email" placeholder="Enter Name" name="name2">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="pwd">Mobile:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="mobile" placeholder="Enter Mobile_No" name="mobile2">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="email">Email:</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="email" placeholder="Enter email" name="emailaddress2">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="pwd">Password:</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="pwd" placeholder="Enter password" name="password2">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="pwd"> Retype Password:</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="pwd" placeholder="Renter password">
</div>
</div>
<div class="col-sm-10">
<input type="file" class="form-control" id="pwd" placeholder="Upload Picture" name="source">
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
</div>
</body>
</html>