-
Notifications
You must be signed in to change notification settings - Fork 2
/
register.html
32 lines (28 loc) · 962 Bytes
/
register.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
<!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">
<link rel="icon" href="https://play-lh.googleusercontent.com/D_a9gAwKQPNFJg9nSWOA5nV2Ycsgky213sZAbom0w5OBtwQ6M6NHg1doNYoj-M49FCQY" type="icon">
<title>FatSecret</title>
<link rel="stylesheet" href="./styles/register.css">
</head>
<body>
<div id="top_section">
<img src="https://static.fatsecret.com/static/images/splash/FS_Logo_SplashScreen_Green.png" alt="">
<h1>My FatSecret Account</h1>
</div>
<div id="second_sectin">
<!-- <div id="my_detail"></div> -->
<h2>My Details</h2>
<form id="form">
</form>
</div>
</body>
</html>
<script src="scripts/register.js"></script>
<script type="module">
import section from "./scripts/register1.js";
document.getElementById("form").innerHTML =section;
</script>