SotM_Playfield/html/editor.html

25 lines
736 B
HTML

<html>
<head>
<script src="/js/editor.js"></script>
<link rel="stylesheet" type="text/css" href="/css/editor.css">
<title>Editor</title>
</head>
<body>
<input id="jsonUpload" type="file"> <button type="button" id="jsonInputDownload">Download input</button> <br>
<form id="deckForm">
<div> <label> Deck Name: <input type="text" id="deckName"></label> </div>
<div>
<label> Deck Type: <select id="deckType">
<option value="hero">hero</option>
<option value="villain">villain</option>
<option value="environment">environment</option>
</select> </label>
</div>
</form>
<form id="cardForm"></form>
<div id="deck"></div>
</body>
</html>