├── babel.config.js
├── public
├── favicon.ico
└── index.html
├── statics
└── singIn.gif
├── src
├── main.js
├── App.vue
└── components
│ └── SingIn.vue
├── .gitignore
├── README.md
└── package.json
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/app'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phelliperodrigues/singIn-vue/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/statics/singIn.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phelliperodrigues/singIn-vue/HEAD/statics/singIn.gif
--------------------------------------------------------------------------------
/src/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './App.vue'
3 |
4 | Vue.config.productionTip = false
5 |
6 | new Vue({
7 | render: h => h(App),
8 | }).$mount('#app')
9 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | # Created by https://www.toptal.com/developers/gitignore/api/vuejs
3 | # Edit at https://www.toptal.com/developers/gitignore?templates=vuejs
4 |
5 | ### Vuejs ###
6 | # Recommended template: Node.gitignore
7 |
8 | node_modules/
9 | dist/
10 | npm-debug.log
11 | yarn-error.log
12 |
13 | # End of https://www.toptal.com/developers/gitignore/api/vuejs
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | Sign In
10 |
11 |
12 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Sign In
2 |
3 | 
4 |
5 | ## Project setup
6 | ```
7 | npm install
8 | ```
9 |
10 | ### Compiles and hot-reloads for development
11 | ```
12 | npm run serve
13 | ```
14 |
15 | ### Compiles and minifies for production
16 | ```
17 | npm run build
18 | ```
19 |
20 | ### Run your tests
21 | ```
22 | npm run test
23 | ```
24 |
25 | ### Lints and fixes files
26 | ```
27 | npm run lint
28 | ```
29 |
30 | ### Customize configuration
31 | See [Configuration Reference](https://cli.vuejs.org/config/).
32 |
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
17 |
18 |
38 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "singin",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "serve": "vue-cli-service serve",
7 | "build": "vue-cli-service build",
8 | "lint": "vue-cli-service lint"
9 | },
10 | "dependencies": {
11 | "vue": "^2.6.11"
12 | },
13 | "devDependencies": {
14 | "@vue/cli-plugin-babel": "^3.12.1",
15 | "@vue/cli-plugin-eslint": "^3.12.1",
16 | "@vue/cli-service": "^3.12.1",
17 | "babel-eslint": "^10.1.0",
18 | "eslint": "^5.16.0",
19 | "eslint-plugin-vue": "^5.2.3",
20 | "node-sass": "^4.14.1",
21 | "sass-loader": "^9.0.1",
22 | "vue-template-compiler": "^2.6.11"
23 | },
24 | "eslintConfig": {
25 | "root": true,
26 | "env": {
27 | "node": true
28 | },
29 | "extends": [
30 | "plugin:vue/essential",
31 | "eslint:recommended"
32 | ],
33 | "rules": {},
34 | "parserOptions": {
35 | "parser": "babel-eslint"
36 | }
37 | },
38 | "postcss": {
39 | "plugins": {
40 | "autoprefixer": {}
41 | }
42 | },
43 | "browserslist": [
44 | "> 1%",
45 | "last 2 versions",
46 | "not ie <= 8"
47 | ]
48 | }
49 |
--------------------------------------------------------------------------------
/src/components/SingIn.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
Bem vindo de volta!
8 |
Faça o login com suas informações pessoais
9 |
10 |
11 |
12 |
Olá amigo!
13 |
Por favor, insira seus dados pessoais
14 |
15 |
16 |
17 |
18 |
26 |
34 |
35 |
36 |
37 |
38 |
47 |
48 |
241 |
--------------------------------------------------------------------------------