This commit is contained in:
vadym Novoselskyi 2024-09-27 13:05:17 +02:00
parent 75928e80c5
commit 473f51e9ba
2 changed files with 36 additions and 0 deletions

0
db/.gitkeep Normal file → Executable file
View File

View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>M6 | EgyTalk</title>
</head>
<body>
<form method="post" action="controller/userManipulation.php">
<input type="hidden" name="login">
<label>Username: </label>
<input type="text" name="username"> <br><br>
<label>Password: </label>
<input type="password" name="password"> <br><br>
<input type="submit" value="Log In"> <br><br><br><br>
</form>
<form method="post" action="controller/userManipulation.php">
<input type="hidden" name="signup">
<label>Name: </label>
<input type="text" name="firstname"> <br><br>
<label>Surname: </label>
<input type="text" name="surname"> <br><br>
<label>Username: </label>
<input type="text" name="username"> <br><br>
<label>Password: </label>
<input type="password" name="password"> <br><br>
<input type="submit" value="Sign Up"> <br><br><br><br>
</form>
<form method="post" action="controller/userManipulation.php">
<input type="hidden" name="logout">
<input type="submit" value="Log Out"> <br><br>
</form>
</body>
</html>