-
Notifications
You must be signed in to change notification settings - Fork 0
/
company.php
218 lines (172 loc) · 8.4 KB
/
company.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CodePanda cms</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="stylesheet" href="bootstrap/bootstrap.min.css"/><style>
.white {
color: white;
font-family: sans-serif;
font-weight: 600px;
}
.content-margin {
margin-top: 25%;
}
.content {
background: linear-gradient(to right, #116D9B 10%, #BE3167 100%);
height: 600px;
width: 100%;
color:#fff;
font-family: sans-serif;
}
.content h1{
font-size:24px;
}
@media only screen and (max-width: 600px) {
.content-margin {
margin-top: 60px;
}
.content {
height: 500px;
font-family:sans-serif;
background-attachment: fixed;
}
.com-img{
visibility:collapse;
}
}
.com-img{
border:4px solid gold;
border-radius:10px;
float:right;
margin-top:10px;
position:relative;
height:200px;
width:90%;
}
.nav-item{
padding:3px 7px;
}
</style>
</head>
<body>
<div class="container">
<?php include'nav_bar.php'?>
</div>
<div class="content">
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="content-margin">
<h1 class="white">Register your Organisation or Company or Community?</h1>
<p class="white">
<ul>
<li>Choose your custom template for certification.</li>
<li>Easy to manage certificate.</li>
<li>Attract more customer from across the world.</li>
<li>Advance Certificate managing technique has been introduced.</li>
</ul>
</p>
<center> <button class="btn btn-lg" data-toggle="modal" data-target="#exampleModal" style="border-radius:10px 10px 0px; background-color:rgba(206,206,0,0.5)">Register Now</button>
</center>
</div>
</div>
<div class="col-md-5">
<div class="content-margin">
<img class="com-img" src="image/r1.png" />
</div>
</div>
</div>
</div>
</div>
<footer style="background-color:#808080;padding:10px;font-family:Helvetica, sans-serif;">
<div class="container">
<h6 class="white">Copyright © 2019 CodePanda, Bhopal.</h6>
</div>
</footer>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="color:#fff;background-color:#B63369">
<h5 class="modal-title" id="exampleModalLabel">Organisation Registration    
<img src="image/register.png" height="20px " width="20px">
</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form method="POST" action="process/com_register_pro.php">
<div class="form-group">
<label>Company Name</label>
<input type="text" class="form-control" placeholder="eg: codepanda" name="com_name" required>
</div>
<div class="form-group">
<label>CIN No.</label>
<input type="text" class="form-control" name="com_cin" >
</div>
<div class="form-group">
<label>Office Address</label>
<textarea name="com_add" style="height:50px; width:100%;" row="5" required></textarea>
</div>
<div class="form-group">
<label>Email address</label>
<input type="email" class="form-control" placeholder="eg: [email protected]" name="com_email" required>
<small class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label>Mobile Number</label>
<input type="text" class="form-control" placeholder="eg: 8123567899" name="com_mob">
<small class="form-text text-muted">only enter 10 digit mobile no.</small>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label>City</label>
<select name="com_city" class="form-control" required>
<option>Choose...</option>
<option value="Bhopal">Bhopal</option>
<option value="Patna">Patna</option>
<option value="Delhi">Delhi</option>
<option value="Benguluru">Bengaluru</option>
</select>
</div>
<!-- form-group end.// -->
<div class="form-group col-md-6">
<label>Country</label>
<select class="form-control" name="com_country">
<option> Choose...</option>
<option value="india">India</option>
</select>
</div>
</div>
<div class="form-group">
<label>Choose password</label>
<input class="form-control" type="password" name="com_password">
</div>
<div class="form-group">
<label>Confirm password</label>
<input class="form-control" type="password" name="com_password1">
</div>
<div class="form-group">
<button type="submit" class="btn btn-outline-primary btn-block"> Register </button>
</div>
<!-- form-group// -->
<small class="text-muted">By clicking the 'Register' button, you confirm that you accept our <br> <a href="about.php?#terms">Terms of use</a> and <a href="#">Privacy Policy</a>.</small>
</form>
</div>
<div class="modal-footer" style="color:#fff;background-color:#B63369">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="bootstrap/jquery.min.js" ></script>
<script src="bootstrap/popper.min.js" ></script>
<script src="bootstrap/bootstrap.min.js" ></script>
</body>
</html>