-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanagement.html
More file actions
74 lines (74 loc) · 2.1 KB
/
management.html
File metadata and controls
74 lines (74 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<script src="management.js" type="application/javascript" defer=""></script>
<style type="text/css">
:root {
font: message-box;
color: #0c0c0d;
}
body {
font-size: 1.1em;
width: 400px;
}
ul {
list-style: none;
padding: 0;
}
h1 {
font-weight: 600;
font-size: 1.25em;
margin-top: 0;
margin-bottom: 0.5em;
}
h2 {
font-weight: 600;
font-size: 1.1em;
margin: 0.5em 0;
}
p {
margin: 0.5em 0;
}
input {
width: 100%;
box-sizing: border-box;
}
label {
width:100%;
}
img {
margin-bottom: 20px;
}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<form>
<img src="images/logo48.png" alt="PF-Logo"/>
<ul>
<li>
<label>
<h2 data-message="powerFolderURLHeader"></h2>
<input type="url" name="private_url" required="true" value="https://my.powerfolder.com/" />
</label>
<input type="url" name="public_url" value="https://my.powerfolder.com/folderstable" hidden/>
</li>
<li>
<label>
<h2 data-message="idHeader" style="display: inline;"></h2><h2 style="color:red; display:inline">*</h2>
<input type="text" name="id" placeholder="Username" id="idd" value="" />
</label>
<label>
<h2 data-message="passHeader" style="display: inline;"></h2><h2 style="color:red; display: inline;">*</h2>
<input type="password" name="pass" placeholder="Password" />
</label>
</li>
<p style= "display:none; color:green" name="confirm" data-message="loginSuccess">Ok</p>
<p style= "display:none; color:red" name="wrong" data-message="loginFailed">Failed</p>
</ul>
<div style="text-align: right"><button type="button" class="btn btn-primary">Save</button></div>
</form>
</body>
</html>