]> Repos - mime-chat/commitdiff
Merge remote-tracking branch 'origin/main' into main
authorEnrique Hernandez <hernandeze2@xavier.edu>
Tue, 23 Feb 2021 20:29:21 +0000 (14:29 -0600)
committerEnrique Hernandez <hernandeze2@xavier.edu>
Tue, 23 Feb 2021 20:29:21 +0000 (14:29 -0600)
1  2 
src/views/login.vue

index 41f9b371a14742093ca51117a3874ae3bedac7cb,4dc887b2e666db643e48ebb6ab6574b81fb87d5b..6cbee8f342e7a5fd8ffedb504aca98c0fa8d7e13
@@@ -8,19 -9,27 +9,27 @@@
      <!-- username and password forms -->
      <div id="loginBox">
        <!-- username -->
-       <input class="input" type="text" v-model="email" placeholder="username" />
+       <div class="inputBox">
+         <input class="input" type="text" v-model="email" />
+         <div class="inputModifier">Email</div>
+       </div>
+       
  
        <!-- password -->
-       <input class="input" type="password" v-model="password" placeholder="Password" />
+       <div class="inputBox">
+         <input class="input" type="password" v-model="password" />
+         <div class="inputModifier">Password</div>
+       </div>
      </div>
  
 -<!--     <input type="checkbox" id="checkbox" v-model="rememberMe" />
 -    <label for="checkbox">Remember Me</label> -->
 +    <input type="checkbox" id="checkbox" v-model="rememberMe" />
 +    <label for="checkbox">Remember Me</label>
  
      <!-- submit button; position: fixed -->
-     <button class="button" @click.prevent="submit">Submit</button>
+     <button class="submitButton button" @click.prevent="submit">Submit</button>
  
      <!-- back to login button: position: fixed  -->
+     <button class="createAccountButton button" @click.prevent="switchView">Create account</button>
    </form>
  </template>