45 lines
1.9 KiB
HTML
45 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="h-100">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Example for kids</title>
|
|
</head>
|
|
|
|
<body class="h-100">
|
|
<div class="container h-100">
|
|
<div class="row align-items-center justify-content-center h-100">
|
|
<div class="col">
|
|
<div class="row justify-content-center StartPage d-none">
|
|
<form id="start-form" class="col StartPage__container">
|
|
<div class="mb-3">
|
|
<label class="form-label" for="startPageNameInput">Введи свое имя:</label>
|
|
<input class="form-control" id="startPageNameInput" />
|
|
</div>
|
|
|
|
<button class="btn btn-success" id="start-button" type="submit" disabled>Старт</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="GamePage d-none">
|
|
<div class="input-group example">
|
|
<input class="form-control" id="first-input" type="number" />
|
|
<span class="input-group-text" id="sign-span">+</span>
|
|
<input class="form-control" id="second-input" type="number" />
|
|
<span class="input-group-text">=</span>
|
|
<input class="form-control" id="sum-input" type="number" />
|
|
</div>
|
|
<button class="btn btn-warning" id="check-button" type="button">Проверить</button>
|
|
</div>
|
|
|
|
<div class="ResultPage d-none">
|
|
<div id="result-container"></div>
|
|
<button class="btn btn-primary" id="repeat-button" type="button">Еще раз</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |