Files
Erupe/www/erupe/charsel.html
SirFist 4f67e3de67 More saves, launcher tweaks
Added config at char select screen
Transmog saving and loading (unlocks are not yet tackled and it is global rn)
Sigil saving (can break, initial pass of save)
Null compression and decompression functions.
First pass of the diff save function.
Disabled stamp cards
2020-02-27 23:42:46 +00:00

77 lines
2.5 KiB
HTML

<!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Simple MHF launcher</title>
<!--
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/firebug-lite/1.4.0/firebug-lite.js#startOpened,overrideConsole"></script>
-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.0/css/bootstrap.min.css">
<!--[if IE 9]>
<link href="css/bootstrap-ie9.css" rel="stylesheet">
<![endif]-->
<!--[if lt IE 9]>
<link href="css/bootstrap-ie8.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/g/html5shiv@3.7.3"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.0/js/bootstrap.bundle.min.js"></script>
<!--<![endif]-->
<!--[if IE 9]>
<script src="js/bootstrap-ie9.js"></script>
<![endif]-->
<!--[if lte IE 8]>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="js/bootstrap-ie8.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.0/js/bootstrap.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript" src="js/charsel.js"></script>
</head>
<body>
<div id="alertBox"></div>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<div style="height:5em; margin-top:3em;">
<h2>
Erupe Simple Launcher
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-2"></div>
<div class="col-8 text-center">
<h5 class="mb-3">Character Select</h5>
<ul id="characterlist" class="list-group char-select-list">
</ul>
</div>
<div class="col-2"></div>
</div>
<div class="row">
<div class="col-12 text-center">
<button id="selectButton" class="btn btn-primary">Select</button>
<!--
<button id="newButton" class="btn btn-primary">New</button>
<button id="deleteButton" class="btn btn-primary">Delete</button>
-->
<button id="btn_config" class="btn btn-primary">Config</button>
</div>
</div>
</div>
</body>
</html>