-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathe-upload.php
138 lines (106 loc) · 3.61 KB
/
e-upload.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!doctype html>
<html lang="en">
<head>
<title>Upload image</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--styles css-->
<?php include_once "styles.php"; ?>
<!--styles css-->
</head>
<body>
<!--navbar-->
<?php include_once "header.php"; ?>
<!--end of navbar-->
<br><br>
<div class="container-fluid m-0 p-0" >
<br>
<h1 class= "text-center">Upload Your Image</h1><br>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8 container card" style="background-image:url(''); width:100%;height:auto;">
<br>
<div class="title">
<h3 class="text-center">Please Fill In The Details Below</h3>
<hr>
<form class="text-center" action="thank-you.php">
Image Name<br>
<input type="text" name="imageName" value="" class="w-50 stsf-b" ><br><br>
Image Catergory<br>
<select name="imageCategory" class="w-50 stsf-b">
<option value="education">Education</option>
<option value="technology">Technology</option>
<option value="architecture">Architecture</option>
<option value="nature">Nature</option>
<option value="interior">Interior</option>
<option value="Adventure">Adventure</option>
<option value="Monuments">Monuments</option>
<option value="Photography">Photography</option>
<option value="Photography">Others</option>
</select><br> <br><br>
<input type="text" name="imageName" value="" class="w-50 stsf-b" placeholder="Write tags here..." ><br><br>
</form>
<!-- <div class="container-fluid" >
<div class="row">
<div class="col-md-3">
</div>
<div class="col-md-8" >
<h4>Select the check boxes to choose your need...</h4>
<form class="text-justify">
<div class="checkbox">
<label><input type="checkbox" value="">1.Do you need resize of your photo?</label>
</div>
<div class="checkbox">
<label><input type="checkbox" value="">2.do you need croping of perticular thing or place ?</label>
</div>
<div class="checkbox">
<label><input type="checkbox" value="">3.Do you need retouch up of ur picture ?(Click check to see the effects)</label>
</div>
</form>
<form>
<div class="checkbox">
<label><input type="checkbox" value="">4.Do you want to remove background of your image?</label>
</div>
<div class="checkbox">
<label><input type="checkbox" value="">5.Do you want to change the color of your image?</label>
</div>
<div class="checkbox">
<label><input type="checkbox" value="">Not what you looking for?</label>
</div>
<textarea rows="4" cols="50" name="comment" form="usrform" class="w-200 stsf-b" placeholder="Write your need here ...">
</textarea>
</form>
</div>
<div class="col-md-1">
</div>
</div>
</div><br> -->
<form class="text-center" action="">
<label class="btn btn-info " for="upload-file-selector">
<input id="upload-file-selector " type="file"> </label><br>
<hr />
<!-- <b>Live Preview</b>
<br />
<br />
<div id="dvPreview">
</div>
<br>
You can upload photos that are .JPEG, .JPG, or .PNG.<br>Max file size 25mb <br>
<label><input type="checkbox" value="">  I Agree <a href="#">Terms and Conditions</a></label><br><br>
<input type ="submit" class="btn-danger w-50" >
<br><br> -->
<button><a href="e-upload2.php">NEXT</a></button>
</form>
</div>
</div>
<div class="col-md-2"></div>
</div>
</div>
<br><br>
<!--footer-->
<?php include_once "footer.php"; ?>
<!-- end of footer-->
<?php include_once "script.php"; ?>
</body>
</html>