Commit b2435fa8 authored by kranthi.kumar's avatar kranthi.kumar

Delete login.html

parent 1a276cfb
<!Doctype html>
<html>
<body style="background-color:powderblue;">
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
<p>{{ message }}</p>
{% endfor %}
{% endif %}
{% endwith %}
{% if error %}
<p><strong>Error</strong>: {{error}}</p>
{% endif %}
<h1 align="center">Welcome To Knowledge Lens</h1>
<h2 align="center">Login Page</h2>
<form name="f1" action="login_data" method="post">
<table align="center" border="0" bgcolor="green" cellspacing="10" cellpadding="5">
<td>Username:</td>
<td><input type="text" size=25 name="username" required></td>
</tr></tr></tr>
<td>Password:</td>
<td><input type="Password" size=25 name="pwd" required></td>
</tr>
<tr>
<td><input type="submit" name="b1" value="login"></td>
<td>
<a href="registration">
<input type="button" onclick="registration" value="Registration"> </a>
</td>
</table>
</form>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment