speedtag/chrome/content/speedtag.html
2011-05-24 02:05:35 +05:30

39 lines
1.1 KiB
HTML

<!doctype html>
<html>
<head>
<script type="text/javascript" src="jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="staticfuncs.js"></script>
<script type="text/javascript" src="speedtag.js"></script>
<link rel="stylesheet" type="text/css" href="speedtag.css" />
</head>
<body>
<div id="wrapper">
<div id="buttons">
<button id="saveLocationBtn">Select Output Folder</button>
<button id="selectAudioFile">Select Audio File</button>
<button id="saveFormData">Save Metadata</button>
</div>
<div style="clear:both;"></div>
<div id="leftForm">
<form id="metadataForm" action="" method="GET">
<table id="formTable">
<tr>
<td class="formLabel optional">
Witness Name:
</td>
<td class="formInput">
<input type="text" name="witnessName" id="witnessName" />
</td>
</tr>
</table>
</form>
</div>
<div id="rightForm">
<textarea id="notesArea"></textarea>
</div>
</div>
</body>
</html>