Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Commit

Permalink
feat(docs): create the news subscription form
Browse files Browse the repository at this point in the history
  • Loading branch information
juliomrqz committed Nov 15, 2018
1 parent cdd3b72 commit 0844d14
Show file tree
Hide file tree
Showing 2 changed files with 188 additions and 0 deletions.
186 changes: 186 additions & 0 deletions packages/docs/src/.vuepress/components/Subscribe.vue
@@ -0,0 +1,186 @@
<template>
<div
id="subscribe"
class="container">
<div class="title">{{ text[language].title }}</div>
<div class="subtitle">{{ text[language].subtitle }}</div>

<form
id="mc-embedded-subscribe-form"
action="https://bazzite.us11.list-manage.com/subscribe/post?u=34b09d915eae6d2857425420f&id=095eb8d814"
method="post"
name="mc-embedded-subscribe-form"
class="validate"
target="_blank"
novalidate>

<input
type="text"
name="b_34b09d915eae6d2857425420f_095eb8d814"
tabindex="-1"
value=""
class="hidden">

<div class="inputs-container">
<div class="email">
<input
id="mce-EMAIL"
:placeholder="text[language].placeholder"
type="email"
value=""
name="EMAIL"
required>
</div>

<div class="button">
<input
id="mc-embedded-subscribe"
:value="text[language].button"
type="submit"
name="subscribe">
</div>
</div>
</form>

<div class="terms">
<a
:href="text[language].privacyLink"
target="_blank"
rel="noopener">
{{ text[language].privacyText }}
</a>
</div>
</div>
</template>

<script>
export default {
data() {
return {
text: {
en: {
title: 'Want to keep up with the latest news, tips and tricks from Statusfy?',
subtitle: 'Subscribe to our Newsletter!',
placeholder: 'your@email.com',
button: 'Subscribe',
privacyText: 'Privacy Policy',
privacyLink: 'https://www.bazzite.com/legal/privacy'
},
es: {
title: '¿Deseas mantenerte al día con las últimas noticias, consejos y trucos de Statusfy?',
subtitle: '¡Suscríbete a nuestro boletín!',
placeholder: 'tu@email.com',
button: 'Suscribirse',
privacyText: 'Política de Privacidad',
privacyLink: 'https://www.bazzite.com/es/legal/privacy'
}
}
}
},
computed: {
language() {
return this.$lang.split('-')[0];
}
}
}
</script>


<style lang="stylus" scoped>
.hidden
display none
.container
text-align center
position relative
padding 2rem
padding-bottom 0
max-width 40rem
margin-bottom 1rem
margin-left auto
margin-right auto
line-height 1.25
.title
font-size 1.25rem
margin-bottom .5rem
font-weight 600
.subtitle
font-size 1.125rem
margin-bottom 1rem
.terms
font-size .875rem
a
color #959da5
&:hover
color #1b1f23
.inputs-container
align-items center
flex-wrap nowrap
flex-direction column
display flex
@media (min-width: 576px)
.inputs-container
flex-direction row
input
font-family inherit
font-size 100%
line-height 1.15
margin 0
overflow visible
box-sizing inherit
.email
margin-bottom 1rem
flex-grow 1
display flex
input
width 100%
color #6a737d
padding .75rem
line-height 1.25
border-width 1px
border-radius .25rem
-webkit-appearance none
-moz-appearance none
appearance none
border 1px solid #e1e4e8
background-color #fafbfc
&:focus
outline 0
.button
margin-bottom 1rem
flex none
input
color #fff
border-color #0366d6
background-color #0366d6
display inline-block
padding .75rem 1.5rem
line-height 1
border-width 1px
border-radius .25rem
white-space nowrap
font-size 1.125rem
cursor pointer
&:hover
color #f6f8fa
border-color #005cc5
background-color #005cc5
@media (min-width: 576px)
.button
input
margin-left 1rem
</style>
2 changes: 2 additions & 0 deletions packages/docs/src/.vuepress/theme/Layout.vue
@@ -1,6 +1,8 @@
<template>
<Layout>
<div slot="page-bottom">
<Subscribe />

<Footer class="page-footer"/>
</div>
</Layout>
Expand Down

0 comments on commit 0844d14

Please sign in to comment.