-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.php
86 lines (77 loc) · 3.99 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="shortcut icon" href="image/10.png" type="image/png" >
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="css/all.min.css">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<style>
.bs-example{
margin: 22px;
}
</style>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/design.css">
<title>Questionnaire</title>
</head>
<body>
<div class="bs-example">
<nav class="navbar navbar-expand-md sticky-top" style="background-color: rgba(0, 0, 0, 0.6);" >
<a href="#" class="navbar-brand" style="color: white; font-weight: bold; font-size: 25px;">Questionnaire</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse" style="background-color: #F1F0FF; border-radius: 10px; height: 30px;">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<a href="" class="closebtn" onclick="closeNav" style="color:rgba(0, 0, 0, 0);">X</a>
<div class="navbar-nav">
<a href="index.php" class="nav-item nav-link active" style="color: white;">Home</a>
<a href="developer.html" class="nav-item nav-link" style="color: white;">Developer</a>
<a href="aboutus.html" class="nav-item nav-link" style="color: white;">About Us</a>
<a href="feedback.php" class="nav-item nav-link active" tabindex="-1" style="color: white;">Feedback</a>
</div>
</div>
</nav>
<header class="jumbotron back-image">
<div class="heading">
<!-- <h2 class="text-light font-weight-bold text-uppercase mb-5" style="padding-top: 80px;">Welcome to Questionnaire</h2> -->
<a href="#registration" class="btn btn-light btnn">sign up</a>
<a href="user/login.php" class="btn btn-light btnn">login</a>
</div>
</header>
<!--registration section start-->
<?php include('registration.php'); ?>
<!--registration section end-->
<!--footer section-->
<div class="container-fluid">
<footer class="row text-white" style="background-color: rgba(0, 0, 0, 0.5);">
<div class="col-sm-4 py-3">
<span class="mr-5 text-center font-weight-bold">follow us:</span>
<a href="#" target="_blank"><i class="fab fa-facebook-f fa-2x"></i></a>
<a href="#" target="_blank"><i class="fab fa-linkedin fa-2x ml-2 text-secondary clr"></i></a>
<a href="#" target="_blank"><i class="fab fa-instagram fa-2x ml-2 text-danger clr"></i></a>
</div> <!--end first column-->
<div class="col-sm-8 text-right my-3">
<!-- <small class="text-uppercase font-weight-bold mr-3">design by ©</small> -->
<small class="ml-2"><a class="btn btn-light" href="admin/adminlogin.php">admin login</a></small>
</div>
</footer>
</div>
<!--End footer section-->
<!-- Boostrap JavaScript -->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/all.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>