Skip to content

Instantly share code, notes, and snippets.

View fanvyr's full-sized avatar
🤔
On vacation

fanvyr

🤔
On vacation
View GitHub Profile
@fanvyr
fanvyr / README.md
Last active April 4, 2019 17:35
A smooth registration form

Registration Form

Demo registration-demo

Notes

API check
The snippet tries to verify if the mail is okay or bad in general by reaching out to my/a backend.
Therefor the statuscode is important: return a 2xx for okay, and a 4xx with a message for not okay.

@fanvyr
fanvyr / index.vue
Created December 16, 2018 16:15
iFrame responsive positioning
<template>
<div class="aspect-ratio">
<iframe
class="video"
:src="'https://www.youtube-nocookie.com/embed/' + data.videoUrl "
frameborder="0"
allow="autoplay; encrypted-media"
allowfullscreen
></iframe>
</div>