-
Notifications
You must be signed in to change notification settings - Fork 1
/
file_creation.html
107 lines (82 loc) · 5.07 KB
/
file_creation.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
104
105
106
107
<!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 Page-->
<title>Information Form</title>
<!-- Icons font CSS-->
<link href="vendor/mdi-font/css/material-design-iconic-font.min.css" rel="stylesheet" media="all">
<link href="vendor/font-awesome-4.7/css/font-awesome.min.css" rel="stylesheet" media="all">
<!-- Font special for pages-->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<!-- Vendor CSS-->
<link href="vendor/select2/select2.min.css" rel="stylesheet" media="all">
<link href="vendor/datepicker/daterangepicker.css" rel="stylesheet" media="all">
<!-- Main CSS-->
<link href="css/main2.css" rel="stylesheet" media="all">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
</head>
<body>
<div class="page-wrapper bg-gra-02 p-t-130 p-b-100 font-poppins">
<div class="wrapper wrapper--w680">
<div class="card card-4">
<div class="card-body">
<h2 class="title">Information Form</h2>
<div id="alert" class="alert alert-success" role="alert">
This is a success alert—check it out!
</div>
<!-- Additional inputs for Registry Officer Id -->
<label for="registry_off_id">Registry Officer Id:</label>
<input type="number" id="registry_off_id" name="registry_off_id" required>
<!-- Additional inputs for Court -->
<label for="name_court">Name of Court:</label>
<input type="text" id="name_court" name="name_court" required>
<!-- Additional inputs for Judge-->
<label for="name_judge">Name of Judge:</label>
<input type="text" id="name_judge" name="name_judge" required>
<!-- Additional inputs for Plaintiff -->
<label for="name_plaintiff">Name of Plaintiff:</label>
<input type="text" id="name_plaintiff" name="name_plaintiff" required>
<!-- Additional inputs for Dependent -->
<label for="name_dependent">Name of Defendent:</label>
<input type="text" id="name_dependent" name="name_dependent" required>
<!-- Additional inputs for Suit Id -->
<label for="Suit_id">Suit Id:</label>
<input type="number" id="Suit_id" name="Suit_id">
<!-- Additional inputs for address -->
<label for="name_address">Name and address of Parties:</label>
<input type="text" id="name_address" name="name_address">
<!-- Additional inputs for Date of filing -->
<label for="Date_filing">Date of Filing:</label>
<input type="date" id="Date_filing" name="Date_filing">
<!-- Additional inputs for charges filed -->
<label for="charges">Charges Filed:</label>
<input type="text" id="charges" name="charges">
<!-- Additional inputs for facts leading to jurisdiction of the court -->
<label for="facts">Facts leading to Jurisdiction of the court:</label>
<input type="text" id="facts" name="facts">
<!-- Additional inputs for claim of relief -->
<label for="relief">Plaintiff's claim of relief:</label>
<input type="text" id="relief" name="relief">
<button id="mybtn" type="button">Submit</button>
</form>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/firebase/7.14.1-0/firebase.js"></script>
<script src="js/register.js"></script>
<!-- Jquery JS-->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Vendor JS-->
<script src="vendor/select2/select2.min.js"></script>
<script src="vendor/datepicker/moment.min.js"></script>
<script src="vendor/datepicker/daterangepicker.js"></script>
<!-- Main JS-->
<script src="js/global.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body><!-- This templates was made by Colorlib (https://colorlib.com) -->
</html>
<!-- end document-->