-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.html
More file actions
executable file
·167 lines (148 loc) · 4.11 KB
/
create.html
File metadata and controls
executable file
·167 lines (148 loc) · 4.11 KB
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
<!doctype html>
<html>
<head>
<title>Passwordstate</title>
<style>
body {
background-color: #0080af;
}
.ok-btn-div {
text-align: right;
}
.ok-btn {
width: 70px;
}
.main {
float: left;
width: 550px;
position: absolute;
top: 50%;
left: 50%;
margin: -125px 0 0 -250px;
font-family: "Segoe UI",Tahoma,arial,sans-serif;
font-size: 14px;
background-color: #ffffff;
padding: 20px;
height: 200px;
}
input[type=text], input[type=password] {
padding-left: 10px;
font-size: 14px;
border: solid 1px #ddd;
-webkit-box-shadow: inset 3px 4px 5px rgba(0,0,0,.09);
-moz-box-shadow: inset 3px 4px 5px rgba(0,0,0,.09);
box-shadow: inset 3px 4px 5px rgba(0,0,0,.09);
}
input[type=button]:hover {
border-color: #0080af;
background-color: #0080af;
text-decoration: none;
color: #FFFFFF;
}
input[type=button] {
padding: 2px 10px 2px 10px;
border: 1px;
border-style: solid;
border-color: #cccccc;
background-color: #f9f9f9;
white-space: nowrap !important;
color: #000000;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px; /* future proofing */
-khtml-border-radius: 3px; /* for old Konqueror browsers */
cursor: pointer;
}
.ico_img {
display: block;
width: 16px;
height: 16px;
float: left;
margin-right: 5px;
}
.ico_img img{
position: relative;
width: 16px;
height: 16px;
}
.label-item {
float: left;
}
.pref-set {
float: right;
}
.pref-item {
clear: both;
text-align: right;
width: 550px;
height: 25px;
}
.line {
margin: 5px 0px 5px 0px;
border-top: 1px solid #E9EAF1; background-color: #fff;
}
.footer {
float: left;
width: 550px;
position: absolute;
top: 50%;
left: 50%;
margin: 110px 0 0 -250px;
font-family: "Segoe UI",Tahoma,arial,sans-serif;
font-size: 14px;
background-color: #f0f1f4 !important;
border-color: #dbe3e4;
padding: 10px 20px 15px 20px;
height: 20px;
text-align: right;
}
</style>
<script src="js/create.js"></script>
</head>
<body>
<form>
<div class="main">
<img src="images/dialog_logo.png"/>
<div class="line"></div>
Please select the appropriate Password List to save the new record into.
<br /><br />
<div class="pref-item">
<div class="ico_img">
<img src="images/passwordlists.png"/>
</div>
<label class="label-item" for="pas_list">Password List:</label>
<div class="pref-set" id="select">
</div>
</div>
<div class="pref-item">
<div class="ico_img">
<img src="images/description.png"/>
</div>
<label class="label-item" for="description">Description:</label>
<input type="text" id="description" style="width: 400px;">
<input type="hidden" id="title">
<input type="hidden" id="url">
<input type="hidden" id="webuser">
<input type="hidden" id="webpassword">
</div>
<div class="pref-item">
<div class="ico_img">
<img src="images/user.png"/>
</div>
<label class="label-item" for="user">UserName:</label>
<input type="text" id="user" style="width: 400px;">
</div>
<div class="pref-item">
<div class="ico_img">
<img src="images/Lock.png"/>
</div>
<label class="label-item" for="password">Password:</label>
<input type="password" id="password" style="width: 342px;">
<input type="checkbox" id="check">Show
</div>
<br />
</div>
<div class="footer"><input class="ok-btn" type="button" value="Save" id="save"></div>
</form>
</body>
</html>