Skip to content

Commit

Permalink
Mise en forme et référencement nouveau formulaire (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmembre-zenika authored Oct 11, 2023
1 parent d5a74f1 commit b64d721
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# scan-and-play-conference

This template should help get you started developing with Vue 3 in Vite.

## Recommended IDE Setup

Expand Down Expand Up @@ -44,3 +43,8 @@ npm run build
```sh
npm run lint
```


## Credits

- [Photography icons created by Icongeek26 - Flaticon](https://www.flaticon.com/free-icons/photography)
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<title>QR code scan</title>
</head>
<body>
<div id="app"></div>
Expand Down
3 changes: 1 addition & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<main>
<h1>
QRCode Scanner
<span>/ project-n1870</span>
</h1>
<QrStream class="scanner-zone" @decode="onDecode">
<div class="validation-success" v-if="isLoading">
Expand Down Expand Up @@ -81,7 +80,7 @@ async function onDecode(content: any) {
if (companyValue !== null)
company = companyValue[1].replace(" ", "+");
}
const url: string = `https://docs.google.com/forms/d/e/1FAIpQLSd4VzAuuHynddXhR3-qKnyiak3ERkwhmJeOfN2K0VoMaVIxzQ/viewform?usp=pp_url&entry.100140466=${name}&entry.1386068958=${email}&entry.1985612851=${company}`;
const url: string = `https://docs.google.com/forms/d/e/1FAIpQLSdsoiXxXKk5Cz0XOGiyS0t-z_gFfnCY8y5E2CWGTIJs3R_3Ag/viewform?usp=pp_url&entry.1680839642=${name}&entry.694152335=${email}&entry.1453140703=${company}`;
window.open(url, "_blank");
result.value = null;
Expand Down
Binary file added src/assets/favicon.ico
Binary file not shown.

0 comments on commit b64d721

Please sign in to comment.