-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccesssignup.php
More file actions
28 lines (21 loc) · 846 Bytes
/
successsignup.php
File metadata and controls
28 lines (21 loc) · 846 Bytes
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
<?php
include 'config.php';
session_start();
error_reporting(0);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TimeKeeper</title>
</head>
<body style="margin:0;">
<div style="height:fit-content; width:90%; background-color:#E66C37; margin:10% auto; border-radius:50px; display:flex; flex-direction:column;">
<h1>You have successfully signed up!</h1>
<h2 style="color:fff; margin-bottom:50px;">Click the icon below to be redirected to the Home page.</h2>
<a href="home.php"><img style="padding-bottom:50px;width: 15%; margin-left:42%;" src="img/Untitled-1 copy.png" alt="Home Logo">
</body>
</html>