-
Notifications
You must be signed in to change notification settings - Fork 0
/
register_menu.php
130 lines (108 loc) · 3.32 KB
/
register_menu.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
<!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);
}
#reg_menu_btn{
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: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/i4.jpg" class="img-rounded" title="Destine" width="650px" height="634px">
<div id="centered1" class="centered"><h3 style="color:#393939;">
<span class="glyphicon glyphicon-list"></span>
  <strong>Choose your Account Type</strong></h3></div>
<div id="centered2" class="centered"><h3 style="color:#393939;">
<span class="glyphicon glyphicon-list"></span>
  <strong>Then Register</strong></h3></div>
<div id="centered3" class="centered"><h3 style="color:#393939;">
<span class="glyphicon glyphicon-list"></span>
  <strong>Then Success Your Needs</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>Select a Account type you need</strong></h4><br>
<form method="post" action="">
<button id="reg_menu_btn" class="btn btn-info btn-lg" name="cureg">Register as a Regular Customer</button><br><br>
<?php
if (isset($_POST['cureg'])) {
echo "<script>window.open('signup.php','_self')</script>";
}
?>
<button id="reg_menu_btn" class="btn btn-info btn-lg" name="coreg">Register Your Company</button><br><br>
<?php
if (isset($_POST['coreg'])) {
echo "<script>window.open('company_reg.php','_self')</script>";
}
?>
<button id="reg_menu_btn" class="btn btn-info btn-lg" name="ireg">Register as Induvidual Service Provider</button><br><br>
<?php
if (isset($_POST['ireg'])) {
echo "<script>window.open('induvidual_reg.php','_self')</script>";
}
?>
</div>
</div>
</body>
</html>