This repository was archived by the owner on Mar 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-farm.php
More file actions
63 lines (61 loc) · 1.82 KB
/
create-farm.php
File metadata and controls
63 lines (61 loc) · 1.82 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
<?php
require_once './scripts/session-handler.php';
session_name("2Org-Cows");
session_start();
include_once './scripts/check-session_restricted.php';
?>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="./static/2Org-Cows.css" />
<link rel="shortcut icon" type="image" href="./static/Favicon-2Org-Cows.ico" />
<title>Create farm</title>
</head>
<body>
<div class="page">
<div class="text a">
<header class="header">
<nav class="dropdown">
<span>Menu</span>
<nav class="dropdown-content">
<p><a href="./search">Search</a></p>
<p><a href="./admin">Admin</a></p>
<p><a href="./measurement">Create Measurement</a></p>
<p><a href="./cow">Cow</a></p>
<p><a href="./upload">Upload files</a></p>
<p><a href="./user">User</a></p>
<p><a href="./home">Home</a></p>
<p><a href="./logout">Logout</a></p>
<p><a href="./help.php">Help</a></p>
</nav>
</nav>
Please create a new farm
</header>
<div class="logo">
<a href="./home">
<picture>
<source srcset="./static/Logo-2Org-Cows.png" media="(min-width: 800px)">
<source srcset="./static/Logo-2Org-Cows64.png">
<img src="./static/Logo-2Org-Cows.png" alt="2Org-Cows logo">
</picture>
</a>
</div>
<div class="center">
<div class="center_1">
<?php
$user_role = $_SESSION["role"];
if ($user_role > 1) {
?>
<h3>Please enter the data required to create a new farm</h3>
<form method="POST" action="./scripts/create-farm_script.php">
<table>
<tr>
</tr>
</table>
</form>
</div>
<footer class="footer">This page was developed for the 2-Org-Cows project and underlies the <a href="./license" style="color:white;">BSD-license</a></footer>
</div>
</div>
</body>
</html>