Files
SteamDepotDownloaderGUI/index.html
mmvanheusden 496ad5724b clean
2022-07-08 20:31:26 +02:00

103 lines
3.6 KiB
HTML

<!DOCTYPE html>
<!-- automatic dark mode :) -->
<html class="anim-fade-in" data-color-mode="auto" data-dark-theme="dark" data-light-theme="light" lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<link href="https://unpkg.com/@primer/css@20.2.4/dist/primer.css" rel="stylesheet"/>
<title>SteamDepotDownloaderGUI</title>
</head>
<body>
<script src="downloader.js"></script>
<div class="mx-auto">
<div hidden id="dotnetwarning">
<div class="flash flash-error mx-2 mt-2 color-shadow-medium" id="alert">
<svg class="octicon" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
<path d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm6.5-.25A.75.75 0 017.25 7h1a.75.75 0 01.75.75v2.75h.25a.75.75 0 010 1.5h-2a.75.75 0 010-1.5h.25v-2h-.25a.75.75 0 01-.75-.75zM8 6a1 1 0 100-2 1 1 0 000 2z"
fill-rule="evenodd"></path>
</svg>
<code><span class="text-italic">dotnet</span></code> was not found.
<button class="btn btn-sm flash-action" id="alertbtn">
<svg class="octicon" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
<path d="M7.47 10.78a.75.75 0 001.06 0l3.75-3.75a.75.75 0 00-1.06-1.06L8.75 8.44V1.75a.75.75 0 00-1.5
0v6.69L4.78 5.97a.75.75 0 00-1.06 1.06l3.75 3.75zM3.75 13a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5z"
fill-rule="evenodd"></path>
</svg>
<span class="text-bold">Download</span>
</button>
</div>
</div>
<div class="f0-light text-center">Steam Depot Downloader</div>
<form id="theform">
<div class="form-group mx-3 mt-1">
<div class="form-group-header">
<label for="username">Username</label>
</div>
<div class="form-group-body">
<input class="form-control input-block" id="username" type="text"/>
</div>
</div>
<div class="form-group mx-3 mt-1">
<div class="form-group-header">
<label for="password">Password</label>
</div>
<div class="form-group-body">
<input class="form-control input-block" id="password" type="password"/>
</div>
</div>
<div class="form-group mx-3 mt-1">
<div class="form-group-header">
<label for="appid">App ID</label>
</div>
<div class="form-group-body">
<input class="form-control input-block" id="appid" type="number"/>
</div>
</div>
<div class="form-group mx-3 mt-1">
<div class="form-group-header">
<label for="depotid">Depot ID</label>
</div>
<div class="form-group-body">
<input class="form-control input-block" id="depotid" type="number"/>
</div>
</div>
<div class="form-group mx-3 mt-1">
<div class="form-group-header">
<label for="manifestid">Manifest ID</label>
</div>
<div class="form-group-body">
<input class="form-control input-block" id="manifestid" type="number"/>
</div>
</div>
<div class="form-group mx-3 mt-1">
<div class="form-group-header">
<label for="osdropdown">Operating system</label>
</div>
<div class="form-group-body">
<select aria-label="Preference" class="form-select" id="osdropdown">
<option disabled>Choose your OS</option>
<option>Windows</option>
<option disabled>macOS (NOT YET IMPLEMENTED)</option>
<option disabled>If you are using Linux</option>
<option disabled>Select your terminal</option>
<option>KDE Konsole</option>
<option>Gnome Terminal</option>
<option>Xfce Terminal</option>
<option>Terminator</option>
<option>Print command in console</option>
</select>
</div>
</div>
</form>
<div class="form-group mx-3">
<button class="btn btn-block btn-primary" id="downloadbtn">Download</button>
</div>
</div>
</body>
</html>