-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.php
50 lines (36 loc) · 1.18 KB
/
profile.php
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
<!DOCTYPE html>
<html lang="en" class="mdl-js">
<title>NITW -DoX-</title>
<link rel="stylesheet" media="screen" href="style.css">
<style type="text/css">
.profile{
height: 300px;
width: 300px;
}
</style>
</head>
<body>
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="paper.php">Sampale paper</a></li>
<li><a href="notes.php">notes</a></li>
<li><a href="#about">About us</a></li>
<li><a href="index.html" class="signin">signout</a></li>
</ul>
<center><br><br></div>
<form action='<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>' method="post">
<div class="profile"> <font color=white><h1>update profile</h1></font>
<fieldset>
<h3>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br>
<label for="mail">Email:</label>
<input type="email" id="mail" name="email"><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password"><br>
</h3>
<button type="submit">update</button>
</fieldset>
</div>
</body>
</html>