123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <template>
- <div id='app'>
- <modal-window name='account'>
- <tab-view :tabs='["Sign up", "Login"]' name="account">
- <template slot='Sign up'>
- <p style='margin-top: 0;'>
- Sign up to create and post in threads.
- <br/>It only takes a few seconds
- </p>
- <fancy-input
- v-model='signup.username'
- placeholder='Username'
- width='100%'
- >
- </fancy-input>
- <fancy-input
- v-model='signup.password'
- placeholder='Password'
- type='password'
- width='100%'
- >
- </fancy-input>
- <fancy-input
- v-model='signup.confirmPassword'
- placeholder='Confirm password'
- type='password'
- width='100%'
- >
- </fancy-input>
- <button class='button' @click='signup'>
- Sign up
- </button>
- <button class='button' @click='cancel'>
- Cancel
- </button>
- </template>
- <template slot='Login'>
- <p style='margin-top: 0;'>
- Login to create and post in threads.
- </p>
- <fancy-input
- v-model='login.username'
- placeholder='Username'
- width='100%'
- >
- </fancy-input>
- <fancy-input
- v-model='login.password'
- placeholder='Password'
- type='password'
- width='100%'
- >
- </fancy-input>
- <button class='button' @click='signup'>
- Log in
- </button>
- <button class='button' @click='cancel'>
- Cancel
- </button>
- </template>
- </tab-view>
- </modal-window>
- <header class='header'>
- <div class='header__group'>
- <div class='logo'>{{name}}</div>
- </div>
- <div class='header__group'>
- <div class='button button--green' @click='showAccountModal(0)'>
- Sign up
- </div>
- <div class='button' @click='showAccountModal(1)'>
- Login
- </div>
- <div class='search' tabindex='0'>
- <input class='search__field' placeholder='Search this forum'>
- <button class='button button--borderless'><span class='fa fa-search'></span></button>
- </div>
- </div>
- </header>
- <router-view></router-view>
- </div>
- </template>
- <script>
- import ModalWindow from './components/ModalWindow'
- import TabView from './components/TabView'
- import FancyInput from './components/FancyInput'
- import mapGetters from 'vuex'
- export default {
- name: 'app',
- components: {
- ModalWindow,
- TabView,
- FancyInput
- },
- data () {
- return {
- signup: {
- username: '',
- password: '',
- confirmPassword: ''
- },
- login: {
- username: '',
- password: ''
- }
- }
- },
- computed: {
- name () {
- return this.$store.state.meta.name
- }
- },
- methods: {
- showAccountModal (index) {
- this.$store.commit('showModal', 'account');
- this.$store.commit({
- type: 'setTab',
- tab: 'account',
- index: index
- });
- },
- cancel () {
- this.$store.commit('hideModal', 'account');
- },
- signup () {
- this.$store.commit('hideModal', 'account');
- }
- }
- }
- </script>
- <style lang='scss'>
- @import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400|Montserrat');
- @import './assets/scss/variables.scss';
- html, body {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- color: $color__text--primary;
- @include text;
- }
- * {
- box-sizing: border-box;
- }
- #app {
- padding-bottom: 2rem;
- padding-top: 5rem;
- }
- .header {
- width: 100%;
- padding: 1rem 2rem;
- position: fixed;
- top: 0;
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 0.125rem solid $color__gray--primary;
- @at-root #{&}__group {
- display: flex;
- > * { margin: 0 0.5rem; }
- > *:first-child { margin-left: 0; }
- > *:last-child { margin-right: 0; }
- }
- }
- .logo {
- @include text($font--role-emphasis, 2rem, normal);
- }
- .button {
- border: 0.125rem solid $color__gray--primary;
- display: inline-block;
- text-align: center;
- @include text($font--role-default, 1rem, 400);
- padding: 0.5rem;
- cursor: pointer;
- background-color: #fff;
- transition: background-color 0.2s, border-color 0.2s;
- outline: none;
- &:hover {
- background-color: $color__lightgray--primary;
- border-color: $color__gray--darker;
- }
- &:active {
- background-color: $color__lightgray--darker;
- border-color: $color__gray--darkest;
- }
- @at-root #{&}__icon {
- }
- @at-root #{&}--borderless {
- border: 0;
- }
- @at-root #{&}--orange {
- border-color: $color__orange--primary;
- &:hover { border-color: $color__orange--darker; }
- &:active { border-color: $color__orange--darkest; }
- }
- }
- .input {
- border: 0.125rem solid $color__gray--primary;
- @include text;
- padding: 0.25rem;
- outline: none;
- &:hover {
- border-color: $color__gray--darker;
- }
- &:focus {
- border-color: $color__gray--darkest;
- }
- }
- .search {
- border: 0.125rem solid $color__gray--primary;
- &:hover {
- border-color: $color__gray--darker;
- }
- &:focus {
- border-color: $color__gray--darkest;
- }
- @at-root #{&}__field {
- outline: none;
- height: 100%;
- padding: 0 0.5rem;
- border: 0;
- @include text;
- @include placeholder {
- @include text;
- }
- }
- }
- </style>
|