Compare commits

..

No commits in common. "a942580e28b1578a7ea1bef7577e67d2a4aee8f3" and "75928e80c50aefd1b9c959b06f2cb9ac14027f41" have entirely different histories.

10 changed files with 0 additions and 39 deletions

1
.gitignore vendored
View File

@ -3,7 +3,6 @@
node_modules/*
db/*
!db/egytalk
!db/.gitkeep
!nginx

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

Binary file not shown.

Binary file not shown.

View File

@ -1,2 +0,0 @@
default-character-set=utf8mb4
default-collation=utf8mb4_swedish_ci

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,36 +0,0 @@
<!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>