-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignuppage.php
68 lines (56 loc) · 1.53 KB
/
signuppage.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
<?php
include 'config.php';
session_start();
error_reporting(0);
if (isset($_SESSION['username'])) {
header("Location: welcome.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<title>BLOOD DONATION</title>
</head>
<link rel="stylesheet" type="text/css" href="signuppagecss.css">
<body>
<div class="hero-image">
<center><img src="C:/Users/subha/Desktop/website/iamges/cenurion blood donation logo.png"
alt="logo"
style="width:250px;height:200px;"></center>
<div class ="header">
<h1><p style="color: white;">DARE TO DONATE</p></h1>
</div>
<!--<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
</ul>-->
<!--<div class ="topnav">
<a href="#">Link</a>
<a href="#">Link</a>
<a href="#">Link</a>
</div>-->
<div class="actual-body">
<center><button class="button" style="vertical-align:middle"><a href="index.php"><span><strong><em><font style="color: antiquewhite;">LOG IN</font></em></strong></span></button></center><br><br>
<center><button class="button" style="vertical-align:middle"><a href="register.php"><span><strong><em><font style="color: antiquewhite;">SIGN UP </font></em></strong></span></button></center><br><br>
</div></div>
<!--<div class="row">
<div class="column">
<h2>Column</h2>
<p></p>
</div>
<div class="column">
<h2>Column</h2>
<p></p>
</div>
<div class="column">
<h2>Column</h2>
<p></p>
</div>
</div>-->
<div class="footer">
<p style="background-color:Tomato;"></p>
</div>
</div>
</body>
</html>