-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
48 lines (46 loc) · 1.83 KB
/
footer.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Footer</title>
<link rel="stylesheet" href="<?php echo $baseUrl; ?>css/main.css" type="text/css">
</head>
<body>
<footer class="footer">
<div class="wrapperfooter">
<table>
<tr>
<td>
<h3>Developer 1: Tu Anh</h3>
<p>Creation of user accounts or registration (Sign-Up).<br>
Real-time validation of information entered by the user in the user account creation form with AJAX.<br>
Login to an existing user account (Sign-In).<br>
Disconnect from a connected user account (Sign-Out and Time-Out).</p>
</td>
<td>
<h3>Developer 2: Queen Sarah</h3>
<p>Creation of the structure to create and exchange data with the database.<br>
Changing the password of an existing user account.<br>
Creation of the structure of web pages to display (e.g., head, header, nav, footer).<br>
Display of the history of the results of all game rounds.</p>
</td>
<td>
<h3>Developer 3: Hazel</h3>
<p>Management of several levels of a question/answer game which follow one another.<br>
Abandoning a game in progress.<br>
Customized display of features and addition of additional interactivity and attraction features.<br>
About page and Interesting stuffs for navigation</p>
</td>
<td>
<h3>Developer 4: Miguel</h3>
<p>Creation and implementation of the GitHub account.<br>
Creation of the structure of folders and files.<br>
Management of several levels of a question/answer game which follow one another.<br>
Coordination of the integration of different functionalities.</p>
</td>
</tr>
</table>
</div>
</footer>
</body>
</html>