51 lines
1.5 KiB
HTML
Executable File
51 lines
1.5 KiB
HTML
Executable File
{% extends "mnfapp/base.html" %} {% load static %} {% block content %}
|
|
<!-- {% block title %}Conversion Room {%endblock%} -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Coversion Studio</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
|
|
/>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
|
|
<style>
|
|
.templ {
|
|
background-color: #EAEAEA;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
padding: 30px;
|
|
text-align: center;
|
|
font-size: 24px;
|
|
color: #616161;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="mulitligule" class="templ">
|
|
<p>
|
|
Thanks for providing your precious time to Use our presentation
|
|
conversion service. You will be notified your conversion status as soon
|
|
as possible via email.
|
|
</p>
|
|
<br />
|
|
<button type="button" class="btn btn-primary" style="background: #33B0CA; border: none;">
|
|
<a
|
|
href="{%url 'pptcovert'%}"
|
|
style="text-decoration: none; color: white"
|
|
>Back to Home</a
|
|
>
|
|
</button>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{% endblock %}
|