-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.php
More file actions
37 lines (36 loc) · 1.33 KB
/
registration.php
File metadata and controls
37 lines (36 loc) · 1.33 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
<?php
require_once('engine.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CarCreator | <?php echo $RegistrationPageTitle; ?></title>
<?php
check_os();
?>
<link rel="icon" type="image/x-icon" href="lib/images/icon.jpg">
</head>
<body>
<header class="menu">
<?php
show_menu();
?>
</header>
<center>
<div class="registration">
<form action="engine.php" method="post">
<input name="login" type="text" placeholder="<?php echo $login_placeholder; ?>" required>
<input name="email" type="email" placeholder="<?php echo $email_placeholder; ?>" required>
<input name="cquestion" type="text" placeholder="<?php echo $cquestion_placeholder; ?>" required>
<input name="password" type="password" placeholder="<?php echo $password_placeholder; ?>" required>
<input name="r_password" type="password" placeholder="<?php echo $r_password_placeholder; ?>" required>
<input name="r_submit" type="submit">
</form>
</div>
</center>
<footer>
</footer>
<script src="lib/scripts/main.js"></script>
</body>
</html>