-
Notifications
You must be signed in to change notification settings - Fork 0
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 #12 from lzpmpc005/f
add templates for visitor and staff
- Loading branch information
Showing
4 changed files
with
317 additions
and
0 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,86 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Animal Management</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f0f0f0; | ||
} | ||
.container { | ||
width: 80%; | ||
margin: auto; | ||
padding: 20px; | ||
background-color: #fff; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
margin-top: 50px; | ||
} | ||
header, | ||
nav, | ||
aside, | ||
main { | ||
padding: 10px; | ||
margin-bottom: 20px; | ||
background-color: #ffffff; | ||
color: #000000; | ||
} | ||
nav ul { | ||
list-style-type: none; | ||
padding: 0; | ||
margin: 0; | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
nav ul li { | ||
display: inline; | ||
margin-right: 20px; | ||
} | ||
a { | ||
color: #000000; | ||
text-decoration: none; | ||
} | ||
header { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
header nav { | ||
margin-left: auto; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Zoo Connect Staff Portal</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="#">User Option</a></li> | ||
<li><a href="#">Notification</a></li> | ||
<li><a href="#">IT Support</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<nav> | ||
<ul> | ||
<li><a href="http://localhost:8000/digitalzoo/staffportal/" target="_self">Home</a></li> | ||
<li><a href="#">My Area</a></li> | ||
<li><a href="#">Venue Management</a></li> | ||
<li><a href="http://localhost:8000/digitalzoo/staffportal/animal/" target="_self">Animal Management</a></li> | ||
<li><a href="#">Festival Management</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<div class="container"> | ||
<main> | ||
<h2>Main Content</h2> | ||
<p>Hello.</p> | ||
</main> | ||
</div> | ||
</body> | ||
</html> |
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,93 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Home Page</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f0f0f0; | ||
} | ||
.container { | ||
width: 80%; | ||
margin: auto; | ||
padding: 20px; | ||
background-color: #fff; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
margin-top: 50px; | ||
} | ||
header, | ||
nav, | ||
aside, | ||
main { | ||
padding: 10px; | ||
margin-bottom: 20px; | ||
background-color: #ffffff; | ||
color: #000000; | ||
} | ||
nav ul { | ||
list-style-type: none; | ||
padding: 0; | ||
margin: 0; | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
nav ul li { | ||
display: inline; | ||
margin-right: 20px; | ||
} | ||
a { | ||
color: #000000; | ||
text-decoration: none; | ||
} | ||
header { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
header nav { | ||
margin-left: auto; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Zoo Connect</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="http://localhost:8000/digitalzoo/staffportal/" target="_self">Staff Portal</a></li> | ||
<li><a href="#">Tourist Portal</a></li> | ||
<li><a href="#">Contact Us</a></li> | ||
<li><a href="#">Join Us</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<nav> | ||
<ul> | ||
<li><a href="http://localhost:8000/digitalzoo/homepage/" target="_self">Home</a></li> | ||
<li><a href="#">About Us</a></li> | ||
<li><a href="#">Plan Your Journey</a></li> | ||
<li><a href="#">Venue Information</a></li> | ||
<li><a href="#">Animal World</a></li> | ||
<li><a href="#">Zoo Festival</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<div class="container"> | ||
<aside> | ||
<h2>About Us</h2> | ||
<p>Hello.</p> | ||
</aside> | ||
|
||
<main> | ||
<h2>Main Content</h2> | ||
<p>Hello.</p> | ||
</main> | ||
</div> | ||
</body> | ||
</html> |
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,91 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Staff Portal</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f0f0f0; | ||
} | ||
.container { | ||
width: 80%; | ||
margin: auto; | ||
padding: 20px; | ||
background-color: #fff; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
margin-top: 50px; | ||
} | ||
header, | ||
nav, | ||
aside, | ||
main { | ||
padding: 10px; | ||
margin-bottom: 20px; | ||
background-color: #ffffff; | ||
color: #000000; | ||
} | ||
nav ul { | ||
list-style-type: none; | ||
padding: 0; | ||
margin: 0; | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
nav ul li { | ||
display: inline; | ||
margin-right: 20px; | ||
} | ||
a { | ||
color: #000000; | ||
text-decoration: none; | ||
} | ||
header { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
header nav { | ||
margin-left: auto; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Zoo Connect Staff Portal</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="#">User Option</a></li> | ||
<li><a href="#">Notification</a></li> | ||
<li><a href="#">IT Support</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<nav> | ||
<ul> | ||
<li><a href="http://localhost:8000/digitalzoo/staffportal/" target="_self">Home</a></li> | ||
<li><a href="#">My Area</a></li> | ||
<li><a href="#">Venue Management</a></li> | ||
<li><a href="http://localhost:8000/digitalzoo/staffportal/animal/" target="_self">Animal Management</a></li> | ||
<li><a href="#">Festival Management</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<div class="container"> | ||
<aside> | ||
<h2>About Us</h2> | ||
<p>Hello.</p> | ||
</aside> | ||
|
||
<main> | ||
<h2>Main Content</h2> | ||
<p>Hello.</p> | ||
</main> | ||
</div> | ||
</body> | ||
</html> |
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