-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
24 lines (22 loc) · 808 Bytes
/
popup.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
<html style="width:fit-content;height: fit-content;">
<body style="width:fit-content;height: fit-content;">
<h1>NCDownloader</h1>
<div id="login">
<h2>Please log in</h2>
<input type="url" placeholder="https://cloud.example.com" id="txt-url" />
<input type="text" placeholder="username" id="txt-username" />
<input type="password" placeholder="password" id="txt-password" />
<button id="btn-login" >Log in</button>
</div>
<div id="logout">
<h2>Logged in</h2>
<p id="lbl-site"></p>
<p id="lbl-user"></p>
<button id="btn-logout">Log out</button>
<h2>Download from url</h2>
<input type="url" id="txt-dl"/>
<button id="btn-dl" >Download</button>
</div>
<script src="popup.js"></script>
</body>
</html>