-
Notifications
You must be signed in to change notification settings - Fork 20
/
new.php
executable file
·171 lines (155 loc) · 4.27 KB
/
new.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Image Browser for CKEditor :: Fujana Solutions</title>
<!-- Jquery -->
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script>
</script>
<style>
body {
background-color: #073C49;
max-width:400px;
margin:auto;
padding:12px;
margin-top:5%;
margin-bottom:6%;
font-family:Verdana, Geneva, sans-serif;
text-align: center;
}
.container {
background-color:rgb(255, 255, 255);
padding:30px;
padding-bottom: 45px;
border-radius:0px;
-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 1px 3px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px rgba(255, 255, 255, 0.25) inset;
-moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 1px 3px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px rgba(255, 255, 255, 0.25) inset;
box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2), 0px 1px 3px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px rgba(255, 255, 255, 0.25) inset;
text-align:center;
border-radius: 5px;
}
.logo {
width:70%;
}
input {
border-radius:0px;
width:100%;
border:solid;
border-width: 2px 0px;
border-color:#687788;
padding:12px 7px;
margin-bottom:12px;
font-size:18px;
font-weight:600;
color: #AEB4BB;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-appearance: none;
-webkit-border-radius:0px;
}
input:focus {
border-color: #34495E;
opacity: 1;
}
.nameOfInput {
font-size:14px;
margin-bottom:12px;
text-align:left;
font-weight:300;
color:#687788;
margin-left: 7px;
}
.login_btn {
margin-top:24px;
background-color:#ffffff;
border-radius:5px;
color:#666;
font-weight:400;
font-size:16px;
width:100%;
padding:10px 10px;
border: solid 2px #848484;
cursor:pointer;
}
.login_btn:hover {
background-color: #848484;
color: #fff;
}
.hrNews {
margin:auto;
margin-top:7px;
background-color: #eaeaea;
padding: 1px 18px;
padding-bottom: 7px;
border-radius: 5px;
}
h1 {
color: #073c49;
font-family: 'Open Sans', sans-serif;
font-size: 34px;
font-weight: 300;
line-height: 40px;
margin: 0 0 16px;
}
h2 {
color: #39424D;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-weight: 300;
line-height: 32px;
margin: -10px 0px 14px;
}
.disable {
color: #39424D;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 500;
line-height: 17px;
margin: 0px 0px 30px;
cursor: pointer;
text-decoration: underline;
}
.disable:hover {
color: #1862A8;
}
.description {
color: #39424D;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
font-weight: 300;
line-height: 17px;
margin: 10px 0px -10px;
padding-bottom: 14px;
text-align: left;
}
</style>
</head>
<body>
<div class="container">
<div class="login">
<h1>Welcome!</h1>
<h2>Please create a new (local) account to prevent others to view and manage your images.</h2>
<h3 class="disable" onclick="window.open('http://imageuploaderforckeditor.altervista.org/disable_pw.html','about:blank', 'toolbar=no, scrollbars=yes, resizable=no, width=900, height=600');">How can I disable the password protection? (external link)</h3>
<form name="form2" action="create.php" method="post">
<p class="nameOfInput">Username</p>
<input type="text" name="username" class="login_form">
<p class="nameOfInput">Password</p>
<input type="password" name="password">
<div style="text-align:right;">
<input class="login_btn" type="submit" value="Create account">
</div>
</form>
</div>
<br />
<div class="hrNews"></div>
<p class="description">
The default upload folder is <b>ckeditor/plugins/imageuploader/uploads</b>. You can change it in the <b>settings</b> panel.
</p>
<div class="hrNews hrNews2"></div>
</div>
</body>
</html>