-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created about and added some content
- Loading branch information
1 parent
c2998d0
commit 7965cfc
Showing
7 changed files
with
51 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
from django.contrib import admin | ||
from django.urls import path,include | ||
from django.urls import path, include | ||
from home import views | ||
|
||
urlpatterns = [ | ||
path("", views.index, name="home"), | ||
path("faqs/", views.faqs, name="faqs"), | ||
|
||
path("popup_detect/", views.popup_detect, name="popup_detect"), | ||
path("report-dp/", views.reportDp, name="report-dp"), | ||
|
||
path("about/", views.about, name="about"), | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
* { | ||
font-family: var(--font-secondary); | ||
} | ||
.content-section section { | ||
display: flex; | ||
align-items: center; | ||
gap: 5rem; | ||
} | ||
.cogniguard-ss { | ||
height: 30rem; | ||
border: 1px solid var(--color-primary); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{% extends "base.html" %} | ||
{% load static %} | ||
{% block head %} | ||
<link rel="stylesheet" href="{% static "css/about.css" %}"> | ||
{% endblock head %} | ||
|
||
{% block title %}About{% endblock title %} | ||
|
||
{% block content %} | ||
<section class="content-section"> | ||
<section> | ||
<img class="cogniguard-ss" src="{%static "img/cogniguard-popup.png"%}" alt="web-extension-picture"> | ||
<div> | ||
<p class="font-medium"> | ||
<span class="blue-text font-mid-large font-secondary">Cogniguard</span> is a lightweight but powerful web extension designed to combat | ||
deceptive tactics and promote transparency online. | ||
</p> | ||
</div> | ||
</section> | ||
<section> | ||
<span class="font-medium"> | ||
<p>It empowers you by</p> | ||
<span class="font-mid-medium"> Identifying dark patterns: Uncovers hidden manipulation techniques used by websites, particularly in e-commerce. | ||
</span> | ||
</span> | ||
</section> | ||
</section> | ||
{% endblock content %} | ||
|
||
{% block script %} | ||
<script src="{% static "js/about.js"%}"></script> | ||
{% endblock script %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters