-
Notifications
You must be signed in to change notification settings - Fork 6
/
connection.html
157 lines (157 loc) · 6.57 KB
/
connection.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
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
<html>
<head>
<meta charset="utf-8"/>
<style type="text/css">
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {
border: 0 none;
cursor: default;
font-family: inherit;
font-size: 100%;
font-weight: inherit;
margin: 0;
outline: 0 none;
padding: 0;
vertical-align: baseline;
}
body {
background-color: #0082c9;
height: 400px;
width: 600px;
text-align: center;
color: #FFF;
font-family: "Open Sans",Frutiger,Calibri,"Myriad Pro",Myriad,sans-serif;
font-size: 0.8em;
font-weight: normal;
line-height: 1.6em;
padding-top: 30px;
}
.wrapper {
margin: 0 auto;
min-height: 100%;
width: 260px;
}
#header {
-webkit-user-select: none;
}
#header .logo {
background-image: url('img/logo.svg');
background-repeat: no-repeat;
height: 120px;
margin-left: 10px;
width: 252px;
margin-bottom: 10px;
}
.hidden {
display: none;
}
.grouptop, .groupmiddle, .groupbottom {
position: relative;
}
input[type="text"], input[type="password"] {
width: 249px;
}
.grouptop input {
border-bottom: 0 none;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
margin-bottom: 0;
}
.groupmiddle input {
border-bottom: 0 none;
border-radius: 0;
border-top: 0 none;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1) inset !important;
margin-bottom: 0;
margin-top: 0;
}
.groupbottom input {
border-top: 0 none;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1) inset !important;
margin-top: 0;
}
input[type="text"], input[type="password"], input[type="button"] {
border: medium none;
}
input {
font-size: 20px;
margin: 5px;
padding: 11px 10px 9px;
}
#ocurltf, #usernametf, #passwdtf {
padding-left: 36px !important;
width: 223px !important;
}
input[type="text"], input[type="password"] {
-webkit-appearance: textfield;
box-sizing: content-box;
background: #fff none repeat scroll 0 0;
color: #555;
cursor: text;
font-family: inherit;
}
#ocurltf + label + img, #usernametf + label + img, #passwdtf + label + img {
left: 16px;
opacity: 0.3;
position: absolute;
top: 22px;
width: 16px;
height: 16px;
}
#usernametf + label + img, #passwdtf + label + img {
top: 17px;
}
label.infield {
display: none;
}
.login {
margin-right: -13px;
}
input[type="button"] {
padding: 10px 20px;
}
input.login {
float: right;
width: auto;
}
.primary {
background-color: #35537a;
border: 1px solid #0082c9;
color: #FFF;
cursor: pointer;
font-weight: bold;
min-width: 25px;
outline: medium none;
border-radius: 5px;
}
</style>
<script type="text/javascript" src="js/connection.js"></script>
</head>
<body>
<div class="wrapper">
<div id="header">
<div class="logo svg"></div>
</div>
<p id="messagep" class="hidden"></p>
<p class="grouptop">
<input type="text" placeholder="" id="ocurltf" />
<label class="infield" for="ocurltf" id="ocurltflbl"></label>
<img src="img/url.svg" class="svg" />
</p>
<p class="groupmiddle">
<input type="text" placeholder="" id="usernametf" />
<label class="infield" for="usernametf" id="usernametflbl"></label>
<img src="img/user.svg" class="svg" />
</p>
<p class="groupbottom">
<input type="password" placeholder="" id="passwdtf" />
<label class="infield" for="passwdtf" id="passwdtflbl"></label>
<img src="img/password.svg" class="svg" />
</p>
<p class="submit">
<input type="button" class="login primary" id="savebtn" value="" />
</p>
</div>
</body>
</html>