I have a number of forms for a website which have been prewritten. I am required to keep these as they are and not modify them.
I am also required to move these to a Django 2.1 back end, which appears to have a built in form generation system, which doesn't appear to be compatible with the forms in themselves (I.E. The Jinja Scripting for forms appears to auto generate the forms without having any real choice in the matter).
I cannot find any documentation on how to move pre existing forms into Django, and I have no idea how.
Thanks for helping me.
<div class="container">
<form class="form-signin" name="login" action="timesheet">
<h1 class="h3 mb-3 font-weight-normal">Sign In</h1>
<label for="inputEmail" class="sr-only">Email address</label>
<input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
<label for="inputPassword" class="sr-only">Password</label>
<input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
<div class="checkbox mb-3">
<label>
<input type="checkbox" value="remember-me"> Remember me
</label>
</div>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
</form>
</div>