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

Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions website/templates/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{% block title %}404 - Page Not Found{% endblock %}
{% block description %}The page you are looking for could not be found.{% endblock %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="min-h-screen flex flex-col items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
<!-- 404 Error Section -->
<div class="text-center mb-12">
Expand Down
1 change: 1 addition & 0 deletions website/templates/account/logout.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
{% endblock og_description %}
{% load i18n %}
{% block content %}
{% include "includes/sidenav.html" %}
<h1>{% trans "Sign Out" %}</h1>
<p>{% trans "Are you sure?" %}</p>
<form method="post"
Expand Down
1 change: 1 addition & 0 deletions website/templates/account/password_reset.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
{% load i18n %}
{% load account %}
{% block content %}
{% include "includes/sidenav.html" %}
{% if user.is_authenticated %}
{% include "account/snippets/already_logged_in.html" %}
{% endif %}
Expand Down
1 change: 1 addition & 0 deletions website/templates/account/password_reset_from_key.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
{% endblock og_description %}
{% load i18n %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="flex flex-col items-center justify-center min-h-screen bg-gray-100">
<h1 class="text-center text-2xl font-bold mb-6">
{% if token_fail %}
Expand Down
1 change: 1 addition & 0 deletions website/templates/check_owasp_compliance.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{% block description %}Check if your OWASP project follows compliance guidelines and best practices.{% endblock %}
{% block keywords %}OWASP, compliance, project guidelines, best practices, open source{% endblock %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div class="mb-8">
<h1 class="text-3xl font-bold text-gray-900">OWASP Project Compliance Checker</h1>
Expand Down
1 change: 1 addition & 0 deletions website/templates/contributors_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
Explore the profile of {{ contributor.name }}, a contributor to the OWASP {% env 'PROJECT_NAME' %} project, with details about their contributions, repository, and social media links.
{% endblock %}
{% block natural_content %}
{% include "includes/sidenav.html" %}
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
Expand Down
1 change: 1 addition & 0 deletions website/templates/education/create_standalone_lecture.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="container mx-auto mt-10 bg-white rounded-lg shadow-md p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Create New Lecture</h2>
<form method="post" action="{% url 'add_lecture' 0 %}" id="addLectureForm">
Expand Down
1 change: 1 addition & 0 deletions website/templates/education/edit_standalone_lecture.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="container mx-auto mt-10 bg-white rounded-lg shadow-md p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Edit Lecture</h2>
<form method="post"
Expand Down
1 change: 1 addition & 0 deletions website/templates/extension.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% extends "base.html" %}
{% block title %}OWASP BLT Chrome Extension{% endblock %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="container mx-auto px-4 py-8">
<h1 class="text-3xl font-bold text-center text-gray-800 mb-8">OWASP BLT Chrome Extension</h1>
<div class="bg-white shadow-md rounded-lg p-6 mb-8">
Expand Down
1 change: 1 addition & 0 deletions website/templates/join.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
{% load gravatar %}
{% load i18n %}
{% block content %}
{% include "includes/sidenav.html" %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.1/velocity.min.js"
integrity="sha384-WT0CC+OrC0vGKpxNQInSyfMeKWFIpgiHtnV9HsqN0g6n9urfDfEUQJZFpT0t9P4U"
crossorigin="anonymous"></script>
Expand Down
1 change: 1 addition & 0 deletions website/templates/list_view.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
Explore all reported issues. Filter by label and user to efficiently find and track the progress of specific issues.
{% endblock og_description %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div class="flex flex-col lg:flex-row lg:items-start lg:space-x-8">
<!-- Main Content -->
Expand Down
15 changes: 8 additions & 7 deletions website/templates/owasp.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
Learn how to get involved with OWASP, join local chapters, contribute to projects, and more.
{% endblock og_description %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="container mx-auto px-4 py-8">
<!-- Introduction -->
<section class="mb-12">
<h1 class="text-4xl font-bold mb-4">Welcome to OWASP</h1>
<p class="text-lg leading-relaxed">
Welcome to the Open Worldwide Application Security Project (OWASP) community! OWASP is a global, nonprofit organization focused on improving the security of software through community-led open-source projects, local chapters, education, and collaboration. This page will guide you through everything you need to know to get involved, whether youre joining a local chapter, contributing to open-source projects, or even starting your own initiative.
Welcome to the Open Worldwide Application Security Project (OWASP) community! OWASP is a global, nonprofit organization focused on improving the security of software through community-led open-source projects, local chapters, education, and collaboration. This page will guide you through everything you need to know to get involved, whether you're joining a local chapter, contributing to open-source projects, or even starting your own initiative.
</p>
</section>
<!-- What is OWASP Section -->
Expand All @@ -47,14 +48,14 @@ <h3 class="text-2xl font-semibold mb-2">1. Join a Local Chapter</h3>
</li>
<li>Chapter Activities: Chapters host events such as meetups, workshops, conferences, and training sessions.</li>
<li>
Start Your Own Chapter: If there isnt a chapter in your area, you can apply to start one. OWASP provides all the resources and support needed to help you build a local community.
Start Your Own Chapter: If there isn't a chapter in your area, you can apply to start one. OWASP provides all the resources and support needed to help you build a local community.
</li>
</ul>
</div>
<div class="mb-8">
<h3 class="text-2xl font-semibold mb-2">2. Become a Member</h3>
<p class="text-lg leading-relaxed">
Joining OWASP as a member provides access to exclusive benefits while supporting the communitys mission.
Joining OWASP as a member provides access to exclusive benefits while supporting the community's mission.
</p>
<ul class="list-disc list-inside ml-6">
<li>
Expand All @@ -69,7 +70,7 @@ <h3 class="text-2xl font-semibold mb-2">2. Become a Member</h3>
<div class="mb-8">
<h3 class="text-2xl font-semibold mb-2">3. Contribute to OWASP</h3>
<p class="text-lg leading-relaxed">
OWASP thrives because of its contributors! Whether youre a developer, writer, designer, or security expert, theres a role for you.
OWASP thrives because of its contributors! Whether you're a developer, writer, designer, or security expert, there's a role for you.
</p>
<ul class="list-disc list-inside ml-6">
<li>Ways to Contribute:</li>
Expand Down Expand Up @@ -116,7 +117,7 @@ <h2 class="text-3xl font-bold mb-4">Open Source Projects</h2>
<a href="https://owasp.org/www-project-gsoc/"
class="text-blue-500 hover:underline">Notable Projects</a>: Explore a list of GSOC projects here.
</li>
<li>Get Involved: If youre interested in mentoring or participating, review the GSOC guidelines for contributors.</li>
<li>Get Involved: If you're interested in mentoring or participating, review the GSOC guidelines for contributors.</li>
</ul>
</ul>
</section>
Expand All @@ -137,7 +138,7 @@ <h2 class="text-3xl font-bold mb-4">Starting Your Own Project</h2>
</ul>
<li>Project Support:</li>
<ul class="list-disc list-inside ml-6">
<li>Access OWASPs vast network for mentorship, funding, and collaboration.</li>
<li>Access OWASP's vast network for mentorship, funding, and collaboration.</li>
<li>Showcase your project at OWASP global events to reach a wider audience.</li>
</ul>
</ul>
Expand All @@ -162,7 +163,7 @@ <h2 class="text-3xl font-bold mb-4">Stay Connected</h2>
<section class="mb-12">
<h2 class="text-3xl font-bold mb-4">Conclusion</h2>
<p class="text-lg leading-relaxed">
OWASP thrives on its communitys energy and contributions. Whether youre here to learn, connect, or innovate, theres a place for you at OWASP. Take the first step today—join a chapter, contribute to a project, or start your own initiative. Together, we can make software security visible and accessible for everyone.
OWASP thrives on its community's energy and contributions. Whether you're here to learn, connect, or innovate, there's a place for you at OWASP. Take the first step today—join a chapter, contribute to a project, or start your own initiative. Together, we can make software security visible and accessible for everyone.
</p>
<p class="text-lg leading-relaxed">
For additional questions or guidance, visit the <a href="https://owasp.org/" class="text-blue-500 hover:underline">OWASP website</a> or reach out to a chapter leader near you.
Expand Down
1 change: 1 addition & 0 deletions website/templates/privacy.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
Read our privacy policy to understand how we handle and protect your data. {% env 'PROJECT_NAME' %} is dedicated to ensuring your privacy and maintaining transparency in our practices.
{% endblock og_description %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="w-4/5 lg:w-1/2">
{% include "mobile_privacy.html" %}
<h1 class="text-4xl sm:text-5xl lg:text-6xl my-10">
Expand Down
1 change: 1 addition & 0 deletions website/templates/room_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Create Room
{% endblock title %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<h1 class="text-3xl font-bold text-gray-900 mb-8">Create Room</h1>
<form method="post">
Expand Down
1 change: 1 addition & 0 deletions website/templates/user_deletion.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="max-w-3xl mx-auto px-4 py-8">
<div class="bg-white shadow-md rounded-lg p-8">
<div class="text-center mb-6">
Expand Down
1 change: 1 addition & 0 deletions website/templates/website/reminder_settings.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="min-h-screen bg-gray-100 py-6 flex flex-col justify-center sm:py-12">
<div class="relative py-3 sm:max-w-xl sm:mx-auto">
<div class="relative px-4 py-10 bg-white mx-8 md:mx-0 shadow rounded-3xl sm:p-10">
Expand Down