lmc/images/upload/index.shtml

73 lines
2.7 KiB
Plaintext

<!--
This file is part of Linode Manager Classic.
Linode Manager Classic is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Linode Manager Classic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Linode Manager Classic. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LMC - Upload a Custom Image</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" href="upload.css" />
<script src="upload.js" type="module"></script>
</head>
<body>
<!--#include virtual="/include/header.html"-->
<div id="main-content" class="wrapper">
<div id="top-links"><a href="/linodes">Linodes</a> » <a href="/images">Images</a> » <span class="top-links-title">Upload</span></div>
<div id="upload">
<p class="warning">Beginning September 1, 2021 Custom Images will be billed at $0.10/GB per month based on the uncompressed image size.</p>
<table class="lmc-table">
<thead>
<tr>
<td colspan="3">Upload a Custom Image</td>
</tr>
</thead>
<tbody>
<tr class="lmc-tr3">
<td>Label</td>
<td colspan="2"><input id="label" type="text" size="50" /></td>
</tr>
<tr class="lmc-tr3">
<td>Description</td>
<td colspan="2"><textarea id="description" rows="3" cols="60"></textarea></td>
</tr>
<tr class="lmc-tr3">
<td>Region</td>
<td><select id="region"></select></td>
<td class="info">
For fastest initial upload, select the region that is geographically closest to you.<br />
Once uploaded you will be able to deploy the image to other regions.
</td>
</tr>
<tr id="next-row" class="lmc-tr3">
<td></td>
<td colspan="2"><button disabled id="next-button" type="button">Next</button></td>
</tr>
<tr class="lmc-tr3 step-2">
<td>File Select</td>
<td colspan="2"><input id="image-file" type="file" /></td>
</tr>
<tr class="lmc-tr3 step-2">
<td></td>
<td colspan="2"><button disabled id="upload-button" type="button">Upload</button></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>