-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from P-E-N-T-E-S/main
Entrega 3
- Loading branch information
Showing
10 changed files
with
202 additions
and
78 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 4.2.5 on 2023-10-30 12:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('Kolekto', '0026_alter_loja_banner_alter_loja_perfil_carrinho'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='Denuncia', | ||
fields=[ | ||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
], | ||
), | ||
] |
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
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,30 +1,18 @@ | ||
{% extends "layout.html" %} | ||
{% block title %} Login {% endblock %} | ||
{% block main %} | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset='utf-8'> | ||
<meta http-equiv='X-UA-Compatible' content='IE=edge'> | ||
<title>Denunciar vendedor</title> | ||
<meta name='viewport' content='width=device-width, initial-scale=1'> | ||
<link rel='stylesheet' type='text/css' media='screen' href='main.css'> | ||
<script src='main.js'></script> | ||
</head> | ||
<body> | ||
<div class="align-items-left"> | ||
<div class="text-align" style="align-items: center;"> | ||
<div class=> | ||
<div class="text-align-center"> | ||
<form action="" method="POST" class="form-denuncia"> | ||
{% csrf_token %} | ||
<input type="radio" name="motivo" value="Produto não entregue ou não conforme" checked /> Produto não entregue ou não conforme <br> | ||
<label style="font-size: 25px;">Motivo da denuncia</label> <br> | ||
<input type="radio" name="motivo" value="Produto não entregue ou não conforme"/> Produto não entregue ou não conforme <br> | ||
<input type="radio" name="motivo" value="Vendedor fraudulento ou não confiável" /> Vendedor fraudulento ou não confiável <br> | ||
<input type="radio" name="motivo" value="Comportamento inadequado do vendedor" /> Comportamento inadequado do vendedor <br> | ||
<input type="radio" name="motivo" value="Outro" /> Outro <br> | ||
<input type="text" class="form-control" name="detalhes"> </input> <br> | ||
<button type="submit"> Enviar denuncia </button> | ||
<input type="text" class="center-block" name="detalhes" style="left: 25%; right: 25%; width: 500px; height: 100px;"> </input> <br> | ||
<button type="submit" class="btn btn-danger" style="margin-top: 10px;"> Enviar denuncia </button> | ||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
</body> | ||
</html> | ||
{% endblock %} |
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
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
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
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
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
Oops, something went wrong.