Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
yousseftamerrr authored Mar 19, 2024
0 parents commit 21adb95
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Untitled-1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clock In/Out System</title>
<!-- Add your CSS file for styling -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Clock In/Out System</h1>
<form id="clock-form">
<label for="worker-name">Worker Name:</label>
<input type="text" id="worker-name" name="worker-name" required>

<label for="picture">Submit Picture:</label>
<input type="file" id="picture" name="picture" accept="image/*" required>

<button type="submit">Clock In</button>
<button type="submit">Clock Out</button>
</form>

<!-- Add your JavaScript file for handling form submission -->
<script src="script.js"></script>
</body>
</html>

0 comments on commit 21adb95

Please sign in to comment.