apple_configurator/web/index.html

28 lines
642 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Apple Configuration Profile generator</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="./style.css">
<script type="module" src="./index.js" defer></script>
</head>
<body>
<h1>Configuration:</h1>
<div>
<label for="font">Choose a font:</label>
<input type="file" id="font" name="font" accept=".ttf,.otf">
<button id="generate">Generate</button>
</div>
<h1>Output:</h1>
<a id="download" style="visibility: hidden;">Download</a>
</body>
</html>