-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathface.php
32 lines (30 loc) · 854 Bytes
/
face.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
<?php
session_start();
session_destroy();
session_start();
?>
<html>
<head>
<title>Menswear</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="hero">
<div class="navbar">
<img src="images/logo.png" class="logo rotate">
<div class="bu">
<button type="button"><a href="login.php">Sign In</a></button>
<button type="button"><a href="registration.php">Sign Up</a></button>
<button type="button"><a href="admin.php">Administrator</a></button>
</div>
</div>
<div class="content">
Welcome to our
<h1>Impressive <br> Collection For Men</h1>
<div class="bu">
<button type="button"><a href="main.php">Let's Go </a></button>
</div>
</div>
</div>
</body>
</html>