Last active
September 14, 2018 22:02
-
-
Save ThunderWiring/35e5216bc06762934dd3d01b172dc1a0 to your computer and use it in GitHub Desktop.
ui for converting youtube links to mp3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<base href="/"> | |
<title> ConvertLinks </title> | |
<link rel="stylesheet" type="text/css" href="/styles/home.css" /> | |
<link rel="stylesheet" type="text/css" href="/styles/linksTable.css" /> | |
<link rel="stylesheet" type="text/css" href="/styles/progress.css" /> | |
<script type="text/javascript" src="/home.js"></script> | |
</head> | |
<body> | |
<div id="linksInputContainer"> | |
<div class="input-wrapper" data-text=""> | |
<input id="linkTextInput" | |
type="text" | |
placeholder="Paste link here..." | |
onclick="linkTextInputClicked()"> | |
</div> | |
<button id="convertButton" onclick="convertLinkButton()" class="container"> | |
Convert | |
</button> | |
</div> | |
<div id="library"> | |
<div id="libraryTitle"> | |
Converted Youtube Links | |
</div> | |
<div class="table-responsive-vertical shadow-z-1"> | |
<!-- Table starts here --> | |
<table id="table" class="table table-hover"> | |
<thead> | |
<tr> | |
<th>Name</th> | |
<th>Link</th> | |
<th>Status</th> | |
</tr> | |
</thead> | |
<tbody> | |
</tbody> | |
</table> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment