-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofileditentry.html
More file actions
35 lines (34 loc) · 1.18 KB
/
profileditentry.html
File metadata and controls
35 lines (34 loc) · 1.18 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
<html>
<head>
<title>
signup
</title>
<link href="css/index.css" type = "text/css" rel="stylesheet"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
</head>
<body>
<h1>
Welcome, update your details</h1>
<form action=php/profileditentry.php method="post">
<label for="name" > Name</label>
<input type="text" name="name" placeholder="name" disabled/>
<br><br/>
<label for="roll" > Roll</label>
<input type="text" name="roll" placeholder="Roll no." disabled/>
<br><br/>
<label for="email" > Email</label>
<input type="text" name="email" placeholder="email"/>
<br><br/>
<label for="hostel" > Hall of residence </label>
<input type="text" name ="hostel" placeholder="hostel"/>
<br><br/>
<label for="Room" > Room no. </label>
<input type="text" name ="room" placeholder="Room no."/>
<br><br/>
<label for="mobile" > Mob no. </label>
<input type="text" name ="mobile" placeholder="Mobile no."/>
<br><br/>
<button type="submit" value="update">Update</button>
</form>
</body>
</html>