41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<meta charset="UTF-8" />
|
|
<title>RktPlayer - A music player - library entry</title>
|
|
</head>
|
|
<body>
|
|
<div class="pane">
|
|
<div class="keyval">
|
|
<label for="kind" id="lbl-kind">Action:</label>
|
|
<span id="kind">Action</span>
|
|
</div>
|
|
<hr />
|
|
<div class="keyval">
|
|
<label for="name" id="lbl-name">Name:</label>
|
|
<input type="text" id="name" />
|
|
</div>
|
|
<div class="keyval">
|
|
<label for="local-path" id="lbl-local-path">Local path:</label>
|
|
<div class="file-box">
|
|
<input id="local-path" type="text" />
|
|
<button id="browse">Browse</button>
|
|
</div>
|
|
</div>
|
|
<div class="keyval">
|
|
<label for="host" id="lbl-host">Host:</label>
|
|
<input type="text" id="host" />
|
|
</div>
|
|
<div class="keyval">
|
|
<label for="prefixes" id="lbl-prefixes">Prefixes:</label>
|
|
<textarea type="text" id="prefixes"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="button-box">
|
|
<button id="ok">OK</button>
|
|
<button id="cancel">Cancel</button>
|
|
<button id="dev">devtools</button>
|
|
</div>
|
|
</body>
|
|
</html> |