-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
63 lines (57 loc) · 1.73 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Serious Bay</title>
<link rel="shortcut icon" type="image/x-icon" href="~/favicon.ico"/>
<link rel="stylesheet" href="style.css" />
<style>
* {
line-height: 140%;
}
h1 {
text-align: center;
font-family: "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", serif;
}
.loginform{
text-align: center;
}
body{background-color: floralwhite; width:600px;margin:20px auto;}
.footer {
position: fixed;
left: 0;
bottom: 20px;
width: 100%;
text-align: center;
}
#copy {
font-style: italic;
color: gray;
font-size: small
}
</style>
</head>
<body>
<h1>Serious Bay</h1>
<p>A Serious search engine. Aimed to save your time on searching the right software for users.</p>
<form class="loginform" method="post" action="password.php">
Username:<input type="text" name="username" placeholder="Mary Smith" required> 
Password:<input type="password" name="password" placeholder="123456" required> 
<input type="submit" name="register" value="Register"> 
<input type="submit" name="login" value="Login">
</form>
<input class="burger-check" id="burger-check" type="checkbox"><label for="burger-check" class="burger"></label>
<nav id="navigation1" class="navigation">
<ul>
<li><a href="home.php">Home</a></li>
<li><a href="about.php">About</a></li>
<li><a href="services.php">Services</a></li>
<li><a href="news.php">News</a></li>
<li><a href="contact.php">Contacts</a></li>
<li><a href="users_tab.php">Users(MySQL)</a></li>
</ul>
</nav>
<footer class="footer">
<p id="copy">© 2017 SERIOUS BAY ALL RIGHT RESERVED</p>
</footer>
</body>
</html>