-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
IftekharulAlam
authored and
IftekharulAlam
committed
Apr 14, 2021
1 parent
f55bea6
commit a79d976
Showing
4 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=\, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<form action="login" method="POST"> | ||
{%csrf_token%} | ||
<input type="text" name="username" placeholder="username"><br> | ||
<input type="password" name="password" placeholder="password"><br> | ||
<input type="submit"> | ||
</form> | ||
<div> | ||
{%for message in messages%} | ||
<h3>{{message}}</h3> | ||
{%endfor%} | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<form action="register" method="POST"> | ||
{%csrf_token%} | ||
<input type="text" name="first_name" placeholder=" First Name"><br> | ||
<input type="text" name="last_name" placeholder="Last Name"><br> | ||
<input type="text" name="username" placeholder="UserName"><br> | ||
<input type="email" name="email" placeholder="Email"><br> | ||
<input type="password" name="password1" placeholder="Password"><br> | ||
<input type="password" name="password2" placeholder="Confirm Password"><br> | ||
<input type="Submit"> | ||
</form> | ||
|
||
</body> | ||
</html> |