-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanunturi.html
More file actions
77 lines (72 loc) · 2.58 KB
/
anunturi.html
File metadata and controls
77 lines (72 loc) · 2.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="ro">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5HQ3FS146Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5HQ3FS146Y');
</script>
<!-- End of Google Analytics -->
<!-- Hotjar Tracking Code for https://eeturcanu.github.io/ProBio_LP/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:2743775,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="favicon.png" type="image/png"/>
<title>ProBio</title>
<link rel="stylesheet" href="assets/stylesheet/style.css">
</head>
<body>
<div id="navbar" role="navigation">
<div class="container">
<ul id="nav-links" class="container">
<li><a id="nav-brand" href="index.html"><img id="brand-logo" src="assets/images/logo.png" alt="logo"></img><!--<span id="brand-name">ProBio</span>--></a></li>
<li><a href="produse.html">Produse</a></li>
</ul>
<span id="nav-auth" class="container">
<a>Cont Producator</a>
</span>
</div>
</div>
<section id="produse">
<h1>Produse</h1>
<div id="div-produse" class="grid">
</div>
</section>
<section id="anunt-nou">
<h1>Anunt nou</h1>
<label for="title">Titlu anunt</label>
<input type="text" id="title"><br>
<label for="photo">Link catre poza</label>
<input type="text" id="photo"><br>
<label for="description">Descriere anunt</label>
<textarea type="text" id="description" rows="10" cols="70"></textarea><br>
<label>Categoria anuntului</label>
<select id="category" name="category">
<option value="legumes" selected>Legume</option>
<option value="fruits">Fructe</option>
<option value="dairy">Produse Lactate</option>
</select><br>
<button id="create-listing-btn" onclick="create_listing();">Creeaza anunt</button>
</section>
<script src="scripts/lazyLoadBackground.js"></script>
<script src="scripts/showNavbarOnScroll.js"></script>
<script src="scripts/index.js"></script>
<script>
start();
update_listings_container();
</script>
</body>
</html>