-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.php
49 lines (43 loc) · 834 Bytes
/
success.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Success</title>
<style type="text/css">
.succ{
width: 500px;
margin: 50px auto;
border: 2px solid green;
padding: 8px;
}
img{
width: 100px;
margin: 0 auto;
margin: 10px 35% ;
}
.thank{
font-size: 100px;
margin-top: 0;
}
.submit{
margin-top: 0;
margin-left: 25%;
width: auto;
height: 33px;
border: 2px solid black;
background: lightgreen;
border-radius: 5px;
font-size: 18px;
}
</style>
</head>
<body>
<div class="succ">
<img src="success_img.png">
<h1 class="thank">Thank you! your information has succesfully submit. Our team Contact you</h1>
<form action="index.php" method="POST">
<input type="submit" name="submit" class="submit" value="Click here for home page ">
</form>
</div>
</body>
</html>