-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
78 lines (69 loc) · 2.67 KB
/
signup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MIQ</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- ionicons -->
<link rel="stylesheet" href="css/ionicons.min.css">
<!-- main style -->
<link rel="stylesheet" href="css/style.css">
<!-- Media queries -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Arabic -->
<link rel="stylesheet" href="css/arabic.css">
</head>
<body class="">
<section class="content sign-up">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-8 col-md-6 col-lg-5 my-panel shadow center-column">
<div class="panel-header">JOIN US</div>
<div class="panel-content row">
<form action="">
<div class="col-xs-12 col-sm-6">
<input type="text" class="my-input" placeholder="First Name">
</div>
<div class="col-xs-12 col-sm-6">
<input type="text" class="my-input" placeholder="Last Name">
</div>
<div class="col-xs-12">
<input type="text" class="my-input" placeholder="E-mail">
</div>
<div class="col-xs-12 col-sm-6">
<input type="Password" class="my-input" placeholder="Password">
</div>
<div class="col-xs-12 col-sm-6">
<input type="password" class="my-input" placeholder="Confirm Password">
</div>
<div class="col-xs-12">
<input type="text" class="my-input" placeholder="Phone Number">
</div>
<div class="col-xs-12">
<button type="submit" class="green-btn btn-block">Sign Up</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- jQuery -->
<script src="js/jquery-3.2.1.min.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Swiper -->
<script src="js/swiper.min.js"></script>
<!-- Slick -->
<script src="js/slick.min.js"></script>
<!-- DateTimePicker -->
<script src="js/bootstrap-datetimepicker.js"></script>
<!-- Script -->
<script src="js/home.js"></script>
<!-- Script -->
<script src="js/signup.js"></script>
</body>
</html>