-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUnsuccessful.php
49 lines (42 loc) · 1.56 KB
/
Unsuccessful.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
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
GSAHFJASFA
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Requirements</title>
<link href="MyCSS.css" rel="stylesheet">
</head>
<body>
<?php
// put your code here
$url = "/WDMS/Register.php";
function GoBackRegister (){
if (headers_sent()){
die('<script type="text/javascript">window.location.href="' . $url . '";</script>');
}else{
header('Location: ' . $url);
die();
}
}
?>
<div class ="container">
<div class ="row main">
<div class ="main-login main-center">
<h2>Sign Up</h2>
<form name="login" action="/WDMS/Register.php" method="POST">
<div class ="form-group">
<label for="" class="cols-sm-2 control-label">User doesn't exist</label>
</div>
<div class ="form-group">
<input type="submit" value="Sign Me Up Now" name="Sign Me Up Now" id="button" class="btn btn-primary btn-lg btn-block login-button" />
</div>
</form>
</div>
</div>
</div>
</body>
</html>