31 lines
836 B
HTML
31 lines
836 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="dark">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
|
<title>Form Autosave</title>
|
|
</head>
|
|
<body>
|
|
<h1>Form Autosave</h1>
|
|
|
|
<form id="save-me">
|
|
<label for="name">Name</label>
|
|
<input type="text" name="name" id="name">
|
|
|
|
<label for="address">Address</label>
|
|
<input type="text" id="address">
|
|
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email">
|
|
|
|
<label for="more">Additional thoughts?</label>
|
|
<textarea name="more" id="more"></textarea>
|
|
|
|
<p>
|
|
<button type="submit">Submit</button>
|
|
</p>
|
|
</form>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|