-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
36 lines (35 loc) · 1.4 KB
/
header.php
File metadata and controls
36 lines (35 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Doctrine 2</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class='container'>
<h1 class="display-4">Nieruchomości</h1>
<ul class="nav nav-pills justify-content-center mb-">
<li class="nav-item">
<a class="nav-link" href="index.php">Strona główna</a>
</li>
<li class="nav-item">
<a class="nav-link" href="nieruchomosci.dodaj.php?typ=mieszkanie">Dodaj mieszkanie</a>
</li>
<li class="nav-item">
<a class="nav-link" href="nieruchomosci.dodaj.php?typ=dom">Dodaj dom</a>
</li>
<li class="nav-item">
<a class="nav-link" href="nieruchomosci.dodaj.php?typ=grunt">Dodaj grunt</a>
</li>
<li class="nav-item">
<a class="nav-link" href="nieruchomosci.przegladaj.php?typ=mieszkania">Przegladaj mieszkania</a>
</li>
<li class="nav-item">
<a class="nav-link" href="nieruchomosci.przegladaj.php?typ=domy">Przegladaj domy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="nieruchomosci.przegladaj.php?typ=grunty">Przegladaj grunty</a>
</li>
</ul>