-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit-recipe.html
24 lines (22 loc) · 1007 Bytes
/
submit-recipe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Submit A Recipe</title>
<script src="https://www.gstatic.com/firebasejs/6.1.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.1.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.1.0/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.1.0/firebase-storage.js"></script>
<link rel="stylesheet" href="src/shared/main.css">
<link rel="stylesheet" href="src/shared/header.css">
<link rel="stylesheet" href="src/shared/navBar.css">
<link rel="stylesheet" href="src/shared/profile.css">
<link rel="stylesheet" href="src/submit-recipe/form.css">
<link rel="stylesheet" href="src/shared/footer.css">
</head>
<body>
<div id="app"></div>
<script type="module" src="src/submit-recipe/submit-recipe.js"></script>
</body>
</html>