-
Notifications
You must be signed in to change notification settings - Fork 11
/
getTheApp.html
97 lines (83 loc) · 3.56 KB
/
getTheApp.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!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>Document</title>
<link rel="icon" href="https://blinkit.com/images/apple-touch-icon-change-60x60-1be1e81.png">
<script src="https://kit.fontawesome.com/45f2a34ad6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="components\calldropdownofNAV.js">
<link rel="stylesheet" href="./css/heaDEr1.css"/>
<link rel="stylesheet" href="./css\fooTEr1.css"/>
<script type="module">
import navbar from "./components/headER1.js"
let header=document.querySelector("#header")
</script>
<link rel="stylesheet" href="./css/getTheApp.css">
</head>
<body>
<div id="header">
<!-- import -->
</div>
<div class="store">
<div class="storeLeft">
<img src="https://blinkit.com/careers/sites/default/files/2022-03/blinkit.png" alt="blikit site"/>
</div>
<div class="storeright">
<div>
<h3>get the blinkit app</h3>
</div>
<div>
<p>We will send you a link, open it on your phone to download the app</p>
</div>
<div class="emailphone">
<form>
<div>
<div>
<label for="email">
<input type="radio" name="radioSelection" id="radioemail" onchange="call()" checked />
<span class="spanMobile">email</span>
</label>
</div>
<div>
<label for="phone">
<input type="radio" name="radioSelection" id="radiophone" onchange="call()" />
<span class="spanPhone">phone</span>
</label>
</div>
</div>
<div class="inputbutton" >
<div>
<input type="text" placeholder="" id="inputfield" value="">
</div>
<div>
<button onclick="sharelink()">share app link</button>
</div>
</div>
</form>
</div>
<div>
<p>Download app form</p>
</div>
<div class="playStores">
<div><img src="https://blinkit.com/careers/sites/default/files/2021-12/appstore.png" alt="AppleStore" onclick="window.location.href=`https://apps.apple.com/us/app/grofers-local-shopping/id960335206`" /> </div>
<div><img src="https://blinkit.com/careers/sites/default/files/2021-12/playstore.png" alt="playstore" onclick="window.location.href=`https://play.google.com/store/apps/details?id=com.grofers.customerapp`" /> </div>
</div>
</div>
</div>
<!-- footer -->
<div id="fooTER"></div>
</body>
</html>
<script src="./script/getTheApp.js"></script>
<script type="module">
import navbar from "./components/headER1.js"
console.log(navbar())
let heaDER = document.querySelector("#header")
heaDER.innerHTML=navbar();
import footer from "./components/footER1.js"
let foot = document.querySelector("#fooTER")
console.log(footer())
foot.innerHTML=footer();
</script>