-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
51 lines (50 loc) · 2.17 KB
/
index.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
49
50
51
<?php
include("functions.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo SERVERNAME; ?></title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body class="text-center bg-dark">
<div class="container">
<form class="bg-light p-5 shadow rounded form-signin" role="form" action="index.php" method="post">
<?php welcomeMessage(); ?>
<div class="form-group">
<label for="username"><?php echo FORM_LANG['FORM_ACC']; ?></label>
<input type="text" name="username" class="form-control">
</div>
<div class="form-group">
<label for="email"><?php echo FORM_LANG['FORM_EMAIL']; ?></label>
<input type="text" name="email" class="form-control">
</div>
<div class="form-group">
<label for="social_id"><?php echo FORM_LANG['FORM_DELETE']; ?></label>
<input type="text" name="social_id" class="form-control">
</div>
<div class="form-group">
<label for="password"><?php echo FORM_LANG['FORM_PWD']; ?></label>
<input type="password" name="password" class="form-control">
</div>
<div class="form-group">
<label for="repassword"><?php echo FORM_LANG['FORM_REPWD']; ?></label>
<input type="password" name="repassword" class="form-control">
</div>
<input class="btd btn-primary" type="submit" name="submit" value="<?php echo FORM_LANG['REGISTER']; ?>">
<br />
<br />
<?php formProcess(); ?>
</form>
</div>
<br />
<div class="container">
<p class="bg-light p-5 shadow rounded">Copyright (c) Hunger 2022</p>
</div>
</body>
</html>