-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot.php
95 lines (68 loc) · 1.85 KB
/
forgot.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
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
<!--Phone Book Assignment Lab-1 -->
<html>
<head>
<style type="text/css">
h2{
color: blue;
text-align: center;
}.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
}
img.avatar {
width: 10%;
border-radius: 70%;
}
.container {
padding: 16px;
}
.submit{
background-color: #4CAF50;
width:25%;
margin-left: 450px;
}
p2{
color:white;
font-size: 15px;
}.add{
background-color: #008000;
}
p4{
color: red;
}
span.psw {
float: right;
padding-top: 10px;
font-size: 25px;
}
</style>
<title> Phone-Directory</title>
</head>
<body>
<h2>Phone Book</h2>
<div class="imgcontainer">
<img src="/phn.png" alt="Phone " class="avatar" ></div>
<form action="searchdata1.php" method="POST">
<div class="container">
<p3 style="color:black" ><b>Name<p4>*</p4></b></p3>
<input style="width:100%;height:35px" type="text" placeholder="Enter Your Registered Name" class="name" name="name" required="true"></br></br>
<button style="width:30%;height:45px;margin-left:435px" type="submit" class="submit" name="search"><p2>Search</p2></button>
</div>
</form>
</br></br></br>
<?php
include "include/searchdata1.php";
?>
</br></br><button style="width:100%;height:35px;margin-left:00px" type="submit" class="add" name="add" onclick="window.location.href='adduser.php'" ><p2>Add To Directory</p2></button>
</br></br>
<form action="dropinfo.php" method="POST">
<button style="margin-left:535px;color:white;background-color:red;width:15%;height:35px" type="submit" name="drop">Drop Data</button>
</form>
</br></br>
<form action="updateinfo.php" method="POST">
<button style="margin-left:535px;color:white;background-color:green;width:15%;height:35px" type="submit" name="drop">Update Data</button>
</form>
<hr>
<p6>This Website is Developed by <a href="https://www.facebook.com/rahulsinghranjann"><b>Rahul Ranjan</b></p6>
</body>
</html>