You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyper-set/server/html/index.html

29 lines
729 B

<!DOCTYPE html>
<html lang="en">
<head>
<title>Awesome test</title>
</head>
<body>
<h1>
COUCOU
</h1>
<div class="card-body">
<form method="POST" id="form">
<div class="mb-3">
<label for="username" class="form-label">Nom d'utilisateur</label>
<input type="text" class="form-control" id="username" minlength="2" maxlength="20"
placeholder="Saisir votre nom d'utilisateur" required>
</div>
<button class="btn btn-primary" id="start" type="submit">Créer un salon privée</button>
</form>
</div>
</div>
</body>
<script src='./client/test.js'></script>
</html>