ResearchMate / src /templates /auth_base.html
Ananthakr1shnan's picture
Upload 80 files
519c06d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}ResearchMate{% endblock %}</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="{{ url_for('static', path='css/main.css') }}" rel="stylesheet">
<link href="{{ url_for('static', path='css/loader.css') }}" rel="stylesheet">
{% block extra_css %}{% endblock %}
</head>
<body>
<main class="container-fluid">
{% block content %}{% endblock %}
</main>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="{{ url_for('static', path='js/main.js') }}"></script>
<script src="{{ url_for('static', path='js/loader.js') }}"></script>
{% block extra_js %}{% endblock %}
</body>
</html>