Browse Source

Log-in/Log-out prototyp

master
Xenia Gruenzinger 5 years ago
parent
commit
24642ca1a8
3 changed files with 43 additions and 17 deletions
  1. 0
    6
      public/index.html
  2. 13
    5
      public/routes/login.js
  3. 30
    6
      public/routes/profil.js

+ 0
- 6
public/index.html View File

@@ -86,13 +86,11 @@
<div class="om-header-container">
<div class="om-header">
<a class="logo-img" href="index.html"><img src="img/app_icon.png" width=45px height=45px></a>
<button v-on:click="showLoginModal=true">Login</button>
<form class="om-searchbar">
<input type="search" placeholder="Search...">
</form>
</div>
</div>
<login-panel v-if="showLoginModal" @clicked="onClickChild" ></login-panel>

<div class="om-content">
<div id=xxx></div>
@@ -125,12 +123,8 @@
router,
el: '#api',
data: {
showLoginModal: false,
},
methods: {
onClickChild (value) {
this.showLoginModal= value;
},
}
});


+ 13
- 5
public/routes/login.js View File

@@ -8,14 +8,18 @@ Vue.component('login-panel', {
</div>
<div class="modal-body">
<form>
User (Ohmportal):<br>
<input type=text length=20 ref=userField v-model=user><br>
Password:<br>
<input type=password length=20 v-model=pwd><br>
<div class="form-group">
<label class="bmd-label-floating"> User (Ohmportal)</label>
<input type="text" class="form-control" length=20 ref=userField v-model=user>
</div>
<div class="form-group">
<label class="bmd-label-floating">Password</label>
<input type=password class="form-control" length=20 v-model=pwd>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary">Login</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" v-on:click="closeLogin(this.Event)">Login</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal" v-on:click="closeLogin(this.Event)">Close</button>
</div>
</div>
@@ -28,6 +32,10 @@ Vue.component('login-panel', {
};
},
methods: {
logIn(event){
this.$emit('clicked', true)
},

closeLogin (event) {
this.$emit('clicked', false)
}

+ 30
- 6
public/routes/profil.js View File

@@ -1,17 +1,41 @@
const ProfilRouter = {
template: `
<div>
<ProfilCard
v-for="(profil, index) in profilcard"
:key="profil.id"
:profil="profil"
></ProfilCard>
<div v-if="isAuthentified">
<ProfilCard
v-for="(profil, index) in profilcard"
:key="profil.id"
:profil="profil"
></ProfilCard>
<button type="button" class="btn btn-primary" data-dismiss="modal" v-on:click="logOut() ">Logout</button>
</div>
<div v-else-if="!isAuthentified">
<button v-on:click="showLoginModal=true" @clicked="logIn">Login</button>
<login-panel v-if="showLoginModal" @clicked="closeModal" ></login-panel>
</div>
</div>`,
data: function () {
return { profilcard: _profilcard };
return {
profilcard: _profilcard,
showLoginModal: false,
isAuthentified: false,
};
},
methods: {
closeModal (value) {
this.showLoginModal = value;
this.isAuthentified = !this.isAuthentified;
},

logIn (value) {

this.showLoginModal=false;
},

logOut () {

this.isAuthentified=false;
},
},
};


Loading…
Cancel
Save