-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
141 lines (97 loc) · 2.12 KB
/
home.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: black;
}
* {
box-sizing: border-box;
}
/* Add padding to containers */
.container {
padding: 60px;
background-color: white;
}
input[type=text], input[type=password] {
width: 30%;
padding: 15px;
margin: 15px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
input[type=text], input[type=email] {
width: 30%;
padding: 15px;
margin: 15px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
/* Full-width input fields */
/*input[type=submit]:focus,:focus {
background-color: #ddd;
outline: none;
}
*/
/* Overwrite default styles of hr */
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
/* Set a style for the submit button */
.logout {
background-color: #4CAF50;
color: white;
padding: 16px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 30%;
opacity: 0.9;
}
.logout:hover {
opacity: 1;
}
/* Add a blue text color to links */
/*a {
color: dodgerblue;
}*/
/* Set a grey background color and center the text of the "sign in" section */
/*.logout {
background-color: #f1f1f1;
text-align: center;
}*/
</style>
</head>
<body>
<center>
<form action="home.php" method="post">
<div class="container">
<h1>Welcome To Home page</h1>
<p>You are logged in now</p>
<hr>
<!-- <label for="psw-repeat"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="psw-repeat" required> -->
<hr>
<button type="submit" class="logout" name="logout">LOGOUT</button><br>
</div>
</form>
<center>
<?php
$db = mysqli_connect('localhost','root','','responsiveform')
or die('Error connecting to MySQL server.');
if (isset($_POST['logout'])) {
echo "
<script>
alert('you are logged out');
window.location.href='login.php';
</script>
";
}
?>
</body>
</html>
p