Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Madad - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Madad مدد</h1>
<nav>
<ul id="main-nav">
<li class="active"><a href="home.html">Home</a></li>
<li><a href="search-worker.html">Search Worker</a></li>
<li><a href="account.html">Account</a></li>
<li><a href="worker-account.html">Worker Account</a></li>
</ul>
</nav>
<div class="help-icon popup" onclick="popup()">i
<span class="popuptext" id="myPopup">Helpful information here.</span>
</div>
</header>
<main>
<section id="worker-information">
<h2>Worker Information</h2>
<form id="worker-info-form">
<label for="worker-name">Name</label>
<input type="text" id="worker-name" name="name" required>
<fieldset>
<legend>Skills</legend>
<label><input type="checkbox" name="skills" value="electrician"> Electrician</label>
<label><input type="checkbox" name="skills" value="plumber"> Plumber</label>
</fieldset>
<label for="worker-time">Time</label>
<input type="time" id="worker-time" name="time">
<label for="worker-details">Details</label>
<textarea id="worker-details" name="details"></textarea>
<label><input type="checkbox" name="active" value="active"> Active</label>
<button id=submit-button type="submit">Save</button>
</form>
<div id="form-success-message" class="hidden">Information saved successfully!</div>
</section>
</main>
<footer>
</footer>
<script src="script.js"></script>
</body>
</html>