-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
91 lines (91 loc) · 2.78 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>img2html</title>
<style>
body {
background-color: #fafcfa;
padding: 0;
margin: 0;
color: #333;
font-size: 16px;
font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "Hiragino Sans GB", "Microsoft YaHei", STHeiti;
}
.wrapper {
margin: 0 auto;
width: 60%;
margin-top: 100px;
}
.main {
background-color: #fff;
border: 1px solid #e9e9e9;
border-top: 3px solid #9d9d3b;
padding: 40px;
padding-bottom: 25px;
box-shadow: 0 10px 6px -6px #bbb;
-moz-box-shadow: 0 10px 6px -6px #bbb;
-webkit-box-shadow: 0 10px 6px -6px #bbb;
}
.title {
text-align: center;
font-size: 26px;
color: #8c8c2a;
}
.content {
border-top: 1px solid #ddd;
margin-top: 20px;
padding: 25px 20px;
}
.footer {
border-top: 1px solid #ddd;
padding-top: 20px;
font-size: 14px;
font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "Hiragino Sans GB";
text-align: right;
color: #999;
}
input {
font-size: 16px;
font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "Hiragino Sans GB", "Microsoft YaHei", STHeiti;
}
all {
color: #8E8E8E;
font-size: 75%;
font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "Hiragino Sans GB", "Microsoft YaHei", STHeiti;
}
right {
float: right;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="main">
<div class="title">Upload Image</div>
<div class="content">
<div align="right">
<form action="/img2html.php" method="post" enctype="multipart/form-data">
<!--accept="image/gif,image/jpeg,image/png,image/webp,image/bmp,.wbmp"--->
<input style="float:left;" type="file" name="img" accept="image/gif,image/jpeg,image/png,.wbmp,.webp,.xbm,.gd,.gd2" required>
<input type="submit" name="submit" value="Submit"/>
</form>
</div>
</div>
</div>
<br>
<all>
<script type="text/javascript">
copyright = new Date();//Get the current date
year = copyright.getFullYear();//Get the current year
document.write('©' + year);//Make the year automatically updated
</script>
<noscript>
©2017
</noscript>
ZeroImg. All rights reserved.<right>Design by <a href="https://www.appnode.com/?0ja3cp">Appnode</a></right>
</all>
</div>
</body>
</html>