-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.html
43 lines (36 loc) · 1.44 KB
/
edit.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edit</title>
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="header">
<div class="container">
<h1 class="header__title">Lee's Recipe App</h1>
<h2 class="header__subtitle">Save your favourite recipes and never forget!</h2>
</div>
</div>
<div class="actions">
<div class="actions__container actions__container--spaced">
<a href="index.html">Save</a>
</div>
</div>
<div class="container">
<input type="text" id="note-title" class="title-input" placeholder="Recipe name">
<textarea id="recipe-body" class="body-input" placeholder="Instructions..."></textarea>
<h1>Ingredients</h1>
<div id="ingredients"></div>
<form class="ingredient-form" id="new-ingredient">
<input class="add-ingredient" type="text" placeholder="Add ingredient" name="text">
<button class="button button--secondary">Add</button>
</form>
<button id="remove-ingredient" class="button button--secondary">Delete recipe</button>
</div>
<script type="module" src="scripts/edit.js"></script>
</body>
</html>