forked from Srishti-Rani/Chinuon_join_form
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
103 lines (73 loc) · 3.45 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en-us"><head>
<meta charset="utf-8">
<title>CHINUON</title>
<!-- mobile responsive meta -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="This is meta description">
<meta name="author" content="srishti">
<!-- plugins -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="plugins/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="plugins/fontawesome/font-awesome.min.css">
<link rel="stylesheet" href="plugins/hover/hover.css">
<link rel="stylesheet" href="plugins/magnific-popup/magnific-popup.css">
<link rel="stylesheet" href="plugins/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="plugins/owl-carousel/owl.theme.default.min.css">
<link rel="stylesheet" href="plugins/text-animation/text-animation.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900&display=swap">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="assets/css/style.css" media="screen">
<!--Favicon-->
<link rel="shortcut icon" href="assets/favicon.png" type="image/x-icon">
<link rel="icon" href="assets/favicon.png" type="image/x-icon">
</head><body>
<style>
body {
background-image:url(assets/login-background.png);
background-size: cover;
}
</style>
<div class="container">
<div class="row">
<div class="contact-holder col-lg-8 offset-lg-2 col-sm-8 offset-sm-2">
<h1 class="wow fadeInUp" data-wow-duration="1.5s">Join Our Organisation!!</h1>
<form method="POST" action="https://formspree.io/xzbjpbne" data-toggle="validator">
<div class="form-container row wow fadeInUp" data-wow-duration="1.5s">
<div class="form-group col-lg-6">
<input class="form-control" type="text" name="username" id="username" placeholder="GitHub UserName" required>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-lg-6" align="center">
<input class="form-control" type="text" id="email" name="email" placeholder="Email" required>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-lg-12">
<textarea class="form-control" name="message" id="message" rows="4" placeholder="Why you want to join us."></textarea>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-lg-12 sub-button">
<button class="submit form-control hvr-icon-push" type="submit" value="send"> Join </button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="credit">
<i class="fa fa-copyright"></i>
<a href="https://github.com/Srishti-Rani" target="_blank">Srishti-Rani</a>
</div>
<!-- JS Plugins -->
<script src="plugins/jQuery/jquery.min.js"></script>
<script src="plugins/bootstrap/bootstrap.min.js"></script>
<script src="plugins/wow.min.js"></script>
<script src="plugins/text-animation/text-animation.js"></script>
<script src="plugins/jquery.waypoints.min.js"></script>
<script src="plugins/filterizr/jquery.filterizr.min.js"></script>
<script src="plugins/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="plugins/owl-carousel/owl.carousel.min.js"></script>
<!-- Main Script -->
<script src="assets/js/script.min.js"></script>
</body>
</html>