Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 19 additions & 27 deletions website/templates/organization/view_domain.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description"
content="View domain details, including domain name, URL, organization information, and social media links. Keep track of all your domains easily.">
<meta name="keywords"
content="view domain, domain details, domain information, domain URL, organization information, social media links">
<script src="https://cdn.tailwindcss.com"></script>
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.5.1/chart.min.js"
integrity="sha384-zVyRZ9eQ45iRS7ZRZQSFKGJpypyxssU6clBCysSqzjmdGWNn8//uC8dh9DabpAbK"
crossorigin="anonymous"></script>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<title>Domain Info</title>
</head>
<body>
{% extends "base.html" %}
{% block head %}
Domain Info
{% endblock head %}
{% block description %}
View domain details, including domain name, URL, organization information, and social media links. Keep track of all your domains easily.
{% endblock description %}
{% block keywords %}
view domain, domain details, domain information, domain URL, organization information, social media links
{% endblock keywords %}
{% block content %}
{% include "includes/sidenav.html" %}
<div>
<div class="fixed bottom-2.5 right-3.75">
<a href="https://github.com/OWASP-BLT/BLT/blob/main/website/templates/organization/view_domains.html">
<i class="fab fa-github"></i>
Expand Down Expand Up @@ -391,7 +381,10 @@ <h4 class="text-xl text-gray-900 font-bold">Top Testers ({{ top_testers | length
</div>
</div>
</div>
<script>
</div>
{% endblock content %}
{% block scripts %}
<script>
document.addEventListener('DOMContentLoaded', function() {
const DATA_SET_VERTICAL_BAR_CHART_1 = JSON.parse('{{ monthly_activity_chart|escapejs | safe }}');

Expand Down Expand Up @@ -430,6 +423,5 @@ <h4 class="text-xl text-gray-900 font-bold">Top Testers ({{ top_testers | length
configVerticalBarChart
);
});
</script>
</body>
</html>
</script>
{% endblock scripts %}