-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
62 lines (34 loc) · 1.04 KB
/
index.php
File metadata and controls
62 lines (34 loc) · 1.04 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php require_once "header.php"; ?>
<div class="container">
<div class="row">
<!-- Content here -->
<div class="mb-3 row">
<label for="staticEmail" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="staticEmail" value="email@example.com">
</div>
</div>
<div class="mb-3 row">
<label for="inputPassword" class="col-sm-2 col-form-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword">
</div>
</div>
<br>
<br>
<br>
<br>
<ul class="list-group">
<?php
$cars = ["BMW", "Volvo", "Toyota", "Nissan"];
//$active_car = $cars["Toyota"];
foreach ($cars as $value):
?>
<li class="list-group-item <?= $value === "Toyota" ? "active" :'' ; ?>"> <?= $value; ?> </li>
<?php
endforeach;
?>
</ul>
</div>
</div>
<?php require_once "footer.php"; ?>