-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
41 lines (28 loc) · 1.08 KB
/
index.php
File metadata and controls
41 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html>
<?php include('views/head.php'); ?>
<body>
<div class="container">
<h1>Welcome to MEMORYJS!</h1>
<div class="row">
<div class="col-xs-6 col-md-6 col-lg-6">
<form action="game.php" method="post">
<div class="form-group">
<label for="number_of_pairs">Number of pairs</label>
<?php if (isset($_GET['error'])): ?>
<input type="text" name="number_of_pairs" class="form-control is-invalid">
<div class="invalid-feedback">
<?php echo $_GET['error']; ?>
</div>
<?php else: ?>
<input type="text" name="number_of_pairs" class="form-control">
<?php endif; ?>
<small class="form-text text-muted">Select a value between 2 to 9 included.</small>
</div>
<button type="submit" class="btn btn-primary">Play</button>
</form>
</div>
</div>
</div>
</body>
</html>