mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
21 lines
832 B
HTML
21 lines
832 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="/i18n.js"></script>
|
|
<link rel="stylesheet" href="style.css">
|
|
<title data-i18n="update_title">Firmware update</title>
|
|
</head>
|
|
<body>
|
|
<nav id="sidebar"></nav>
|
|
<div style="margin-left:16%;padding:1px 16px;height:1000px;width:40%;">
|
|
<h1 data-i18n="update_heading">Firmware Update</h1>
|
|
<form enctype="multipart/form-data" action="/upload" method="POST">
|
|
<input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
|
|
<span data-i18n="update_instruction">Choose a firmware update file to upload:</span> <br/> <br/>
|
|
<input name="uploadedfile" type="file" accept=".bin" /><br />
|
|
<input style="margin-top:3em" type="submit" data-i18n="update_upload" value="Upload File" />
|
|
</form>
|
|
<script src="/navigation.js"></script>
|
|
</body>
|
|
</html>
|