Skip to content
Snippets Groups Projects
Commit b7fad31a authored by Vigneshwaran K's avatar Vigneshwaran K :first_quarter_moon:
Browse files

Upload New File

parent d5f9cc57
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CRUD App</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<div class="container">
<h2>User Management</h2>
<form id="user-form">
<input type="hidden" id="user-id">
<input type="text" id="name" placeholder="Enter Name" required>
<input type="email" id="email" placeholder="Enter Email" required>
<button type="submit">Submit</button>
</form>
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Email</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="user-list">
<!-- User data will be inserted here -->
</tbody>
</table>
</div>
</body>
</html>
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