-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofessional-signup.php
144 lines (144 loc) · 7.35 KB
/
professional-signup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<title> Professional Sign Up </title>
<link href="css/font-awesome.css" rel="stylesheet">
<link href="css/fonts.css" rel="stylesheet">
<link href="css/simple-line-icons.css" rel="stylesheet">
<!-- pages css -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive-style.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
</head>
<body>
<?php
require('include/page-header.php');
?>
<section class="login-section">
<div class="container">
<div class="login-inner">
<form class="signup-form common-form">
<h3 class="form-h">Professional Sign Up</h3>
<div class="form-wrap">
<div class="row">
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<input type="text" placeholder="Enter Name" class="form-control">
</div>
</div>
<div class="row">
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<input type="text" placeholder="Enter Email Address" class="form-control">
</div>
</div>
<div class="row">
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<input type="text" placeholder="Date of Birth" class="form-control">
</div>
</div>
<div class="row">
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<input type="text" placeholder="Enter Contact Number" class="form-control">
</div>
</div>
<div class="row">
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<input type="text" placeholder="Enter Address" class="form-control">
</div>
</div>
<div class="row">
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<input type="text" placeholder="Enter Services" class="form-control">
</div>
</div>
<div class="row">
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<div class="custom-select">
<select class="form-control txtfield" placeholder="Select Experience">
<option>Select Experience</option>
<option>+1 Year</option>
<option>+2 Year</option>
<option>+3 Year</option>
<option>+4 Year</option>
<option>+5 Year</option>
</select>
<span class="caret"></span>
</div>
</div>
</div>
<div class="row">
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<div class="custom-select">
<select class="form-control txtfield" placeholder="Select Gender">
<option>Select Gender</option>
<option>Male</option>
<option>Female</option>
</select>
<span class="caret"></span>
</div>
</div>
</div>
<div class="form-group col-md-12 col-sm-12 col-xs-12 p-0">
<div class="sign-inntn">
<a href="#" class="btn cut-btn" >Sign Up</a>
</div>
</div>
<div class="line-div"></div>
<div class="social-mediad">
<ul class="social-ul">
<li class="fb">
<a href="javascript:void(0);">
<i class="fa fa-facebook" aria-hidden="true"></i>
sign in with facebook
</a>
</li>
<li class="tw">
<a href="javascript:void(0);">
<i class="fa fa-twitter" aria-hidden="true"></i>
sign in with twitter
</a>
</li>
<li class="google">
<a href="javascript:void(0);">
<i class="fa fa-google-plus" aria-hidden="true"></i>
sign in with google
</a>
</li>
</ul>
</div>
<div class="sign-up">
Already have an account with us ?
<span>
<a href="#">Sign In</a>
</span>
</div>
</div>
</form>
</div>
</div>
</section>
<?php
require('include/footer.php');
?>
</body>
<script type="text/javascript" src="js/jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="js/jquery.sliderPro.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/owl.carousel.js"></script>
<script>
$(window).scroll(function() {
if ($(this).scrollTop() > 1){
$('header').addClass("sticky");
}
else{
$('header').removeClass("sticky");
}
});
</script>
</html>