-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignup.php
69 lines (62 loc) · 3 KB
/
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
<!--Copyrights author: Frankline Bwire-->
<!--insurance management system-->
<!--theme copyrights Colorlib-->
<?php
require 'server.php';
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Narok Online Insurance System</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/themify-icons.css">
<link rel="stylesheet" href="vendors/fontawesome/css/all.min.css">
<link rel="stylesheet" href="vendors/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="vendors/animate-css/animate.css">
<!-- main css -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body style="background-image:url(img/wildlife_conservation-wallpaper-2880x1620.jpg)">
<div class="container" style="margin-top:150px;background-image: url(img/background/pattern1.png);">
<div class="row align-items-center">
<div class="col-12">
<div class="row align-items-center">
<div class="col-lg-6 mb-4">
<h2 style="color: #049; font-weight: bold">Narok Online Insurance System</h2>
<p class="mb-4" style="color: #fff; font-weight: bold">Narok Online Insurance System is a web application which is used to tracking the details about the insurance policy, customer details and company details. The company tries to give insurance policy holders quick access to their insurance policy details, modify or update the datails and even renew an expired insurance policy. All this, with a single click on your computer, at the comfort of your home.
</p>
</div>
<div class="col-lg-5 ml-auto">
<form action="signup.php" method="post">
<?php include('errors.php');
?>
<h3 style="color: #049; font-weight: bold">Sign Up</h3>
<div class="form-group">
<input type="text" class="form-control" name="uname" placeholder="Username" required>
</div>
<div class="form-group">
<input type="text" class="form-control" name="umail" placeholder="Email Addresss" required>
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="Password" name="pass1" required>
</div>
<div class="form-group mb-4">
<input type="password" class="form-control" placeholder="Re-type Password" name="pass2" required>
</div>
<div class="form-group">
<input type="submit" name="usubmit" class="btn btn-primary btn-pill" value="Sign up" style="margin-right: 20px">
Already have an account?<a href="index.php" style="font-weight: 600"> Login </a>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>