-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathe-upload2.php
181 lines (140 loc) · 4.66 KB
/
e-upload2.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!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" >
<br>
<div class="row">
<div class="col-md-12 container card" >
<br>
<div class="title">
<center><h3>Select the check boxes to choose your need...</h3></center>
<hr>
<form class="text-center" action="thank-you.php">
<div class="container" >
<div class="row">
<div class="col-md-12">
<div class="checkbox">
<h4><label><input type="checkbox" value="">1.Do you need resize of your photo?</label></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="images/art2.jpg" style="overflow: hidden; width: 100%;">
</div>
<div class="col-md-6">
<img src="images/art2.jpg" style="overflow: hidden; width: 80%;">
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<div class="checkbox">
<h4> <label><input type="checkbox" value="">2.Do you need croping of perticular thing or place ?</label></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="images/art1.jpg" style="overflow: hidden; width: 100%;">
</div>
<div class="col-md-6">
<img src="images/art11.png" style="overflow: hidden; width: 100%;">
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<div class="checkbox">
<h4><label><input type="checkbox" value="">3.Do you need retouch up of ur picture ?</label></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="images/fabienne_B.jpg" style="overflow: hidden; width: 100%;">
</div>
<div class="col-md-6">
<img src="images/fabienne.jpg" style="overflow: hidden; width: 100%;">
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<div class="checkbox">
<h4><label><input type="checkbox" value="">4.Do you want to remove background of your image?</label></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="images/pp.jpeg" style="overflow: hidden; width: 100%;">
</div>
<div class="col-md-6">
<img src="images/pexels-photo-213117.jpg" style="overflow: hidden; width: 100%;">
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="checkbox">
<h4><label><input type="checkbox" value="">4.Do you want gradient effect to your image?</label></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="images/pexels-photo-168497.jpeg" style="overflow: hidden; width: 100%;">
</div>
<div class="col-md-6">
<img src="images/gradient.jpg" style="overflow: hidden; width: 100%;">
</div>
</div>
<h5>
<div class="radio" >
<label style="padding-right: 20px;"><input type="radio" value="" name="optradio">A.Red</label>
<label style="padding-right: 20px;"><input type="radio" value="" name="optradio">B.Green</label>
<label style="padding-right: 20px;"><input type="radio" value="" name="optradio">C.Blue</label>
<label style="padding-right: 20px;"><input type="radio" value="" name="optradio">D.Purple</label>
<label style="padding-right: 20px;"><input type="radio" value="" name="optradio">E.Yellow</label>
<label style="padding-right: 20px;"><input type="radio" value="" name="optradio">F.Pink</label>
</div>
</h5>
<br><br>
<form class="text-center" action="thank-you.php">
<input type="text" name="cost" value="" class="w-50 stsf-b" disabled="" placeholder="Cost of Editing: 5+5+5+5=20rs" ><br><br>
<!-- <label class="btn btn-info " for="upload-file-selector">
<input id="fileupload" type="file" multiple="multiple" /></label> -->
<hr />
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>
</form>
</div>
</form>
</div>
<div class="col-md-2"></div>
</div>
</div>
<br><br>
</form>
</div>
<!--footer-->
<?php include_once "footer.php"; ?>
<!-- end of footer-->
<?php include_once "script.php"; ?>
</body>
</html>