31 lines
910 B
HTML
31 lines
910 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>tronnet - client</title>
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
|
<link rel="stylesheet" href="css/form.css" type="text/css">
|
|
<script src="scripts/config.js" type="module"></script>
|
|
</head>
|
|
<body>
|
|
<div class="center-div">
|
|
<form>
|
|
<fieldset>
|
|
<legend>Name</legend>
|
|
<div class="labels-inputs" id="name"></div>
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Resources</legend>
|
|
<div class="labels-inputs" id="resources"></div>
|
|
</fieldset>
|
|
<fieldset class="fieldset-no-border">
|
|
<div class="btn-group" id="form-actions">
|
|
<button id="cancel" type="button">CANCEL</button>
|
|
<button id="submit" type="button">SUBMIT</button>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |