Compare commits

..

2 Commits

Author SHA1 Message Date
a942580e28 add db 2024-09-27 13:07:34 +02:00
473f51e9ba add db 2024-09-27 13:05:17 +02:00
10 changed files with 39 additions and 0 deletions

1
.gitignore vendored
View File

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

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

BIN
db/egytalk/comment.frm Executable file

Binary file not shown.

BIN
db/egytalk/comment.ibd Executable file

Binary file not shown.

2
db/egytalk/db.opt Executable file
View File

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

BIN
db/egytalk/post.frm Executable file

Binary file not shown.

BIN
db/egytalk/post.ibd Executable file

Binary file not shown.

BIN
db/egytalk/user.frm Executable file

Binary file not shown.

BIN
db/egytalk/user.ibd Executable file

Binary file not shown.

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>