24 lines
651 B
HTML
24 lines
651 B
HTML
{% extends 'hospital/homebase.html' %}
|
|
<!--
|
|
developed By : sumit kumar
|
|
facebook : fb.com/sumit.luv
|
|
youtube : youtube.com/lazycoders
|
|
-->
|
|
{% block content %}
|
|
|
|
<br>
|
|
<br>
|
|
|
|
<div class="jumbotron" style="margin-bottom:0px;">
|
|
<h1 class="display-4" style="text-align:center;">Hello, Admin</h1>
|
|
<p class="lead">Welcome to Hospital Management System.</p>
|
|
<hr class="my-4">
|
|
<p>You can access various features after Login/SignUp.</p>
|
|
<p class="lead">
|
|
<a class="btn btn-primary btn-lg" href="/adminsignup" role="button">SignUp</a>
|
|
<a class="btn btn-primary btn-lg" href="/adminlogin" role="button">Login</a>
|
|
</p>
|
|
</div>
|
|
|
|
{% endblock content %}
|