Commit 41d4521f authored by kranthi.kumar's avatar kranthi.kumar

Delete registration.html

parent 9b69daad
<!Doctype html>
<html>
<body style="background-color:powderblue;">
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
{% if error %}
<p><strong>Error</strong>: {{error}}</p>
{% endif %}
<h1 align="center">Welcome To Knowledge Lens</h1>
<h2 align="center">REGISTRATION PAGE</h2>
<form name="f1" action="registration_data" method="post">
<table align="center" border="0" bgcolor="green" cellspacing="10" cellpadding="5">
<tr>
<td>Name:</td>
<td><input type="text" name="name" size="15" required></td>
</tr>
<tr>
<td>Phone No:</td>
<td><input type="text" name="number" size="15" required></td>
</tr>
<tr>
<td>Mail id:</td>
<td><input type="email" name="mail" size="15" required></td>
</tr>
<tr>
<td>User id:</td>
<td><input type="text" name="user_id" size="15" required></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password" size="15" required></td>
</tr>
<tr>
<td><a href="registration_success"><input type="submit" onclick="login" value="Register"></a></td>
</tr>
</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