-
Notifications
You must be signed in to change notification settings - Fork 0
/
documents.php
104 lines (78 loc) · 4.07 KB
/
documents.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
error_reporting(0);
session_start();
include 'fileupload.php';
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<link type="text/css" rel="stylesheet" href="css/admform.css"></link>
<link rel="stylesheet" href="bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap/bootstrap-theme.min.css">
<script src="bootstrap/jquery.min.js"></script>
<script src="bootstrap/bootstrap.min.js"></script>
</head>
<body style="background-image:url('./images/inbg.jpg');">
<form id="docup" enctype="multipart/form-data" name="docup" action="documents.php" method="post">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<!-- <img src="images/cutm.jpg" width="100%" style="box-shadow: 1px 5px 14px #999999; "></img> -->
</div>
</div>
</div>
<div class="container" style="margin-left:100px;">
<table class="table table-striped">
<thead>
<tr>
<th >
<font style=" font-family: Verdana; font-size:19px;"> Upload Your Documents</font>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>Passport Size Image :</td>
<td><input type="file" id="fpic" name="fpic" required="true"><br>
</td>
</tr>
<tr>
<td>
Signature
</td>
<td>
<input type="file" id="fsig" name="fsig" required="true"><br>
</td>
</tr>
<tr>
<tr>
<td>10th Mark Sheet :</td>
<td>
<input type="file" id="ftndoc" name="ftndoc" required="true"><br>
</td>
</tr>
<tr>
<td>
12th Mark Sheet :
</td>
<td>
<input type="file" id="fdmdoc" name="fdmdoc" required="true"><br>
</td>
</tr>
<tr>
<td>
Identity Proof
</td>
<td>
<input type="file" id="fide" name="fide" required="true"><br>
</td>
</tr>
<td colspan="2"><input type="submit" id="fpicup" name="fpicup" class="toggle btn btn-primary"></td>
</tr>
</tbody>
</table>
</div>
</form>
</body>
</html>