Create html files:

+ login
+ pengumuman
+ edit pengumuman
This commit is contained in:
2017-08-28 15:45:07 +07:00
commit 6b5fe0eadf
3 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Login</title>
</head>
<body>
<form method="post">
<h2>Login</h2>
<label for="username">Username: </label>
<input type="text" name="username" value="" placeholder="Type your username">
<label for="password">Password: </label>
<input type="password" name="password" value="" placeholder="Type your password">
<!-- CSRF Token -->
<input type="hidden" name="_token_" value="##GENERATED##">
<!-- Form type -->
<input type="hidden" name="_type_" value="post">
<button type="submit" name="login">Login</button>
</form>
</body>
</html>