-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdenuncia.html
More file actions
52 lines (52 loc) · 1.76 KB
/
denuncia.html
File metadata and controls
52 lines (52 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Basuritas</title>
<link href='http://fonts .googleapis.com/css?family=Roboto:400,300,500' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="css/normalize.css" />
<link type="text/css" rel="stylesheet" href="css/style.css" />
<!-- components js -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/parse-js-sdk/lib/parse.js"></script>
<!-- js -->
<script src="js/config.js"></script>
<script src="js/common.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<header>
<div class="contenedor">
<a href="index.html" class="logo">
<img src="img/eco-logo.png" alt="ecologia logo" />
</a>
<h1><a href="index.html">trash</a></h1>
<nav id='menu-superior'>
<ul>
<li><a href="puntos-reciclaje.html">Puntos de reciclaje</a></li>
<li><a href="denuncia.html">Denuncias</a></li>
<li><a href="informacion.html">Información</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
</div>
</header>
<div class="contenedor">
<section class="form">
<div class="complaint-form">
<form onsubmit="crearDenuncia(); return false;" method="POST">
<h3 class="complaint-form__title">Reportar denuncia</h3>
<label class="complaint-form__label-title"for="denuncia_text_input">Descripción</label>
<input type="text" name="denuncia_text" id="denuncia_text_input" value=""><br><br>
<label for="denuncia_image_input">Foto</label>
<input type="file" name="denuncia_image" id="denuncia_image_input"><br><br>
<button type="submit">Enviar</button>
</form>
</div>
</section>
</div>
<footer>
<p>Proyecto Basurita - Global Shapers</p>
</footer>
</body>
</html>