23 lines
936 B
HTML
23 lines
936 B
HTML
<!DOCTYPE html>
|
|
<html class="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="./output.css" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-slate-200 dark:bg-slate-900">
|
|
<div class="flex justify-center">
|
|
<div id="form" class="form-group p-6 rounded-lg shadow-lg max-w-md my-10 bg-slate-100 dark:bg-slate-800">
|
|
<label for="file" class="form-entry">Upload loader.kip</label>
|
|
<a href="https://github.com/KazushiMe/Switch-OC-Suite/releases/latest" target="_blank" class="link-primary">Get latest here</a>
|
|
<input id="file" type="file" class="form-control form-entry">
|
|
<div class="btn">
|
|
<button id="load" class="hide btn btn-secondary">Load Default</button>
|
|
<button id="save" class="hide btn btn-primary">Save</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script type="text/javascript" src="./main.js"></script>
|
|
</html>
|