<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>New Project</title>
<style>
body{
background-color: chartreuse;
background-size:cover;
}
form {
margin: 0 auto;
width:250px;
text-align: center;
}
</style>
</head>
<body>
<form method="post" action="/Myapp/login_post/" align="center">
{% csrf_token %}
Name:<input type="test" maxlength="30" name="username" align="center">
<br><br>
Password:<input type="password" name="password" align="center">
<br><br>
<input type="submit" value="Submit" name="submit" align="center">
<br><br>
</form>
</body>
</html>