Skip to content
Snippets Groups Projects
Commit bbb7e22a authored by maria-moroz's avatar maria-moroz
Browse files
parents 14b0ec90 523fba52
No related branches found
No related tags found
No related merge requests found
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/team2_project.iml" filepath="$PROJECT_DIR$/.idea/team2_project.iml" />
</modules>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
{
"liveServer.settings.port": 5501
}
\ No newline at end of file
...@@ -14,23 +14,12 @@ ...@@ -14,23 +14,12 @@
<div class="appBar"> <div class="appBar">
<span class="appName">StudentProfile</span> <span class="appName">StudentProfile</span>
<nav class="navigation"> <nav class="navigation">
<a class="navLink" href="./main.html">Home</a>
<a class="navLink" href="./registerPage.html">Register</a> <a class="navLink" href="./registerPage.html">Register</a>
<a class="navLink active" href="./addProjectPage.html">Add Project</a> <a class="navLink active" href="./addProjectPage.html">Add Project</a>
</nav> </nav>
</div> </div>
</header> </header>
<main> <main></main>
<form action="" class="formContainer">
<div class="fieldContainer">
<label class="formLabel" for="email">Name of the project: </label>
<input
class="formInput"
type="text"
id="firstname"
name="firstname"
/>
</div>
</form>
</main>
</body> </body>
</html> </html>
images/building.jpeg

143 KiB

images/cardiff2.png

562 KiB

images/cardiff3.jpg

179 KiB

images/coffee.jpg

404 KiB

images/figure1.gif

10.4 KiB

images/students.jpg

3.72 MiB

<!DOCTYPE html>
<html>
<head>
<title>W3.CSS Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="styles.css" />
<style>
/* body {font-family: "Times New Roman", Georgia, Serif;}
h1, h2, h3, h4, h5, h6 {
font-family: "Playfair Display";
letter-spacing: 5px;
} */
</style>
</head>
<body>
<!-- Navbar (sit on top) -->
<div class="appBar">
<span class="appName">StudentProfile</span>
<nav class="navigation">
<a class="navLink active" href="./main.html">Home</a>
<a class="navLink" href="./registerPage.html">Register</a>
<a class="navLink " href="./addProjectPage.html">Add Project</a>
</nav>
</div>
<!-- Header -->
<header class="w3-display-container w3-content w3-wide" style="max-width:1600px;min-width:500px" id="home">
<img class="w3-image" src="images/students.jpg" alt="Cardiff Building" width="1600" height="800">
<div class="w3-display-bottomleft w3-padding-large w3-opacity">
<h1 class="w3-xxlarge">Cardiff University - Register Here</h1>
</div>
</header>
<!-- Page content -->
<div class="w3-content" style="max-width:1100px">
<!-- About Section -->
<div class="w3-row w3-padding-64" id="about">
<div class="w3-col m6 w3-padding-large w3-hide-small">
<img src="images/cardiff2.png" class="w3-round w3-image w3-opacity-min" alt="Table Setting" width="600" height="750">
</div>
<div class="w3-col m6 w3-padding-large">
<h1 class="w3-center">Student Registration</h1><br>
<h5 class="w3-center">The University opened its doors on 24 October 1883 and was formally established by Royal Charter in 1884.</h5>
<p class="w3-large">In 1893 we became one of the founding institutions of the University of Wales and began awarding their degrees. By 1972 we had taken the name University College, Cardiff</p>
</div>
</div>
<hr>
<div class="w3-col l6 w3-padding-large">
<img src="images/building.jpeg" class="w3-round w3-image w3-opacity-min" alt="Students" style="width:100%">
</div>
</div>
<hr>
<div class="w3-container w3-padding-64" id="contact">
<h1>Contact</h1><br>
<p class="w3-text-blue-grey w3-large"><b>Cardiff School of Computer Science & Informatics, Cathays, Cardiff CF24 4AW</b></p>
<p>You can also contact us by phone 029 2087 4000 or email didcotem@cardiff.ac.uk, or you can send us a message here:</p>
<form action="/action_page.php" target="_blank">
<p><input class="w3-input w3-padding-16" type="text" placeholder="Name" required name="Name"></p>
<p><input class="w3-input w3-padding-16" type="text" placeholder="Email" required name="Email"></p>
<p><input class="w3-input w3-padding-16" type="datetime-local" placeholder="Date and time" required name="date" value="20/10/2022"></p>
<p><input class="w3-input w3-padding-16" type="text" placeholder="Message \ Special requirements" required name="Message"></p>
<p><button class="w3-button w3-light-grey w3-section" type="submit">SEND MESSAGE</button></p>
</form>
</div>
</div>
<footer class="w3-center w3-light-grey w3-padding-32">
<p>Powered by <a href="https://www.cardiff.ac.uk" title="Cardiff Website" target="_blank" class="w3-hover-text-green">Cardff University</a></p>
</footer>
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
<div class="appBar"> <div class="appBar">
<span class="appName">StudentProfile</span> <span class="appName">StudentProfile</span>
<nav class="navigation"> <nav class="navigation">
<a class="navLink" href="./main.html">Home</a>
<a class="navLink active" href="./registerPage.html">Register</a> <a class="navLink active" href="./registerPage.html">Register</a>
<a class="navLink" href="./addProjectPage.html">Add Project</a> <a class="navLink" href="./addProjectPage.html">Add Project</a>
</nav> </nav>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment