46 lines
911 B
HTML
46 lines
911 B
HTML
<!DOCTYPE html>
|
|
{% load static %}
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
<title>LazyCoder || sumit</title>
|
|
<style media="screen">
|
|
.jumbotron {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.jumbotron h1 {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include "hospital/navbar.html" %}
|
|
<br><br>
|
|
<div class="jumbotron">
|
|
<h1 class="display-4">Your message sent successfully !</h1>
|
|
<p class="lead">We will respond to your feedback soon</p>
|
|
<hr class="my-4">
|
|
<p>Check other features of website !</p>
|
|
<p class="lead">
|
|
<a class="btn btn-primary btn-lg" href="/" role="button">HOME</a>
|
|
</p>
|
|
</div>
|
|
|
|
{% include "hospital/footer.html" %}
|
|
</body>
|
|
<!--
|
|
developed By : sumit kumar
|
|
facebook : fb.com/sumit.luv
|
|
youtube : youtube.com/lazycoders
|
|
-->
|
|
|
|
</html>
|