-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsindex2.1.php
90 lines (75 loc) · 3.34 KB
/
sindex2.1.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
<?php
include "dbase.php";
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PSC Project </title>
<!-- Bootstrap Lib's css -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<!-- Custom styles for this template -->
<link href="css/form-validation.css" rel="stylesheet">
</head>
<body class="bg-light">
<div class="container">
<main>
<div class="py-2 text-center">
<h2>ස්ථාන මාරුවීමේ අයදුම්පත්රය </h2>
<!-- <p class="lead">Some Description Here.</p> -->
</div>
<div class="col-12">
<p><h4><center>Marrege Status</center></h4></p>
<label for="inno" class="form-label">කාලත්රයාගේ නම:</label>
<div class="input-group has-validation">
<!--<span class="input-group-text">@</span>-->
<input type="text" class="form-control" id=""placeholder=" " required>
<div class="invalid-feedback">
</div>
</div>
</div>
<div class="col-12">
<label for="inno" class="form-label">කාලත්රයා රැකියාවක් කරන්නේ නම් සේවා ස්ථානයේ ලිපිනය:</label>
<div class="input-group has-validation">
<!--<span class="input-group-text">@</span>-->
<input type="text" class="form-control" id=""placeholder=" " required>
<div class="invalid-feedback">
</div>
</div>
</div>
<div class="col-12">
<label for="inno" class="form-label">කාලත්රයාගේ ස්ථිර පදිංචි ස්ථානයේ ලිපිනය:</label>
<div class="input-group has-validation">
<!--<span class="input-group-text">@</span>-->
<input type="text" class="form-control" id=""placeholder=" " required>
<div class="invalid-feedback">
</div>
</div>
</div>
<div class="col-12">
<label for="ol" class="form-label">තම කාලත්රයා ත්රිවිධ හමුදාවේ හෝ පොලිස් බල ඇණියේ සේවයේ නියුතුද?:</label>
<select name="type" id="" onchange="la(this.value)" class="form-control form-select" required>
<option value="" disabled hidden selected>තෝරන්න </option>
<option value="sindex2.1.1.php">ඔව් </option>
<option value="">නැත </option>
</select>
<div class="invalid-feedback">
</div>
</div>
<div id="saved"></div>
<hr class="my-4">
<a href="sindex2.php" class="btn btn-primary btn-lg">ආපසු </a>
<a href="sindex2.2.php" class="btn btn-primary btn-lg">ඊළඟ </a>
</div>
</div>
</div>
</main>
</div>
<script>
function la(src){
window.location=src;
}
</script>
</body>
</html>