-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.php
131 lines (109 loc) · 3.1 KB
/
main.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<head>
<title>Destine</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<style>
body{
overflow-x: hidden;
/*overflow-y: hidden;*/
}
#centered1{
position: absolute;
font-size: 10vw;
top:34%;
left:45%;
transform: translate(-50%, -50px);
}
#centered2{
position: absolute;
font-size: 10vw;
top: 54%;
left:45%;
transform: translate(-50%, -50px);
}
#centered3{
position: absolute;
font-size: 10vw;
top: 74%;
left:45%;
transform: translate(-50%, -50px);
}
#signup{
width: 85%;
border-radius: 30px;
background-color: #505050;
border-color: #505050;
}
#signup:hover{
width: 85%;
background-color: #505050;
border-color:#505050;
border-radius: 30px;
}
#login{
width: 85%;
background-color: #fff;
border-color: #505050;
color: #505050;
border-radius: 30px;
}
#login:hover{
width: 85%;
background-color: #fff;
color: #393939;
border-color:#505050;
border-radius: 30px;
}
.well{
background-color: #393939;
height:110px;
}
</style>
<body>
<div class="row">
<div class="col-sm-12">
<div class="well">
<center><b><h1 style="color: white;">Destine</h1></b></center>
<center><i><h5 style="color: white;">Build your dream House,Shop or anthing as you expected</h5></i></center>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6" style="Left:1%;">
<img src="images/isf.jpg" class="img-rounded" title="Destine" width="650px" height="634px">
<div id="centered1" class="centered"><h3 style="color:#e6e6e6;">
<span class="glyphicon glyphicon-search"></span>
  <strong>Plan Your Dream</strong></h3></div>
<div id="centered2" class="centered"><h3 style="color:white;">
<span class="glyphicon glyphicon-search"></span>
  <strong>Manage Your Dream</strong></h3></div>
<div id="centered3" class="centered"><h3 style="color:white;">
<span class="glyphicon glyphicon-search"></span>
  <strong>Success Your Dream</strong></h3></div>
</div>
<div class="col-sm-6" style="left:1%;">
<img src="images/logo1.jpg" class="img-rounded" title="Destine" width="120px" height="120px">
<h2><strong>Plan,Manage and Success<br>your whole life</strong></h2><br><br>
<h4><strong>Join Destine Today ; )</strong></h4><br>
<form method="post" action="">
<button id="signup" class="btn btn-info btn-lg" name="signup">Register</button><br><br>
<?php
if (isset($_POST['signup'])) {
echo "<script>window.open('register_menu.php','_self')</script>";
}
?>
<button id="login" class="btn btn-info btn-lg" name="login">Login</button><br><br>
<?php
if (isset($_POST['login'])) {
echo "<script>window.open('login_menu.php','_self')</script>";
}
?>
</div>
</div>
</body>
</html>