Compare commits
2 Commits
75928e80c5
...
a942580e28
Author | SHA1 | Date | |
---|---|---|---|
a942580e28 | |||
473f51e9ba |
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,6 +3,7 @@
|
||||
node_modules/*
|
||||
|
||||
db/*
|
||||
!db/egytalk
|
||||
!db/.gitkeep
|
||||
|
||||
!nginx
|
||||
|
0
db/.gitkeep
Normal file → Executable file
0
db/.gitkeep
Normal file → Executable file
BIN
db/egytalk/comment.frm
Executable file
BIN
db/egytalk/comment.frm
Executable file
Binary file not shown.
BIN
db/egytalk/comment.ibd
Executable file
BIN
db/egytalk/comment.ibd
Executable file
Binary file not shown.
2
db/egytalk/db.opt
Executable file
2
db/egytalk/db.opt
Executable file
@ -0,0 +1,2 @@
|
||||
default-character-set=utf8mb4
|
||||
default-collation=utf8mb4_swedish_ci
|
BIN
db/egytalk/post.frm
Executable file
BIN
db/egytalk/post.frm
Executable file
Binary file not shown.
BIN
db/egytalk/post.ibd
Executable file
BIN
db/egytalk/post.ibd
Executable file
Binary file not shown.
BIN
db/egytalk/user.frm
Executable file
BIN
db/egytalk/user.frm
Executable file
Binary file not shown.
BIN
db/egytalk/user.ibd
Executable file
BIN
db/egytalk/user.ibd
Executable file
Binary file not shown.
36
www/public/M6/egyTalk/login.php
Normal file
36
www/public/M6/egyTalk/login.php
Normal 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>
|
Loading…
Reference in New Issue
Block a user