-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- make signup/login forms so pressing enter submits the form - add separate small circular version of image for logo - fix users table is_runner filter logic - use de locale for dates
- Loading branch information
Showing
11 changed files
with
90 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,3 +178,5 @@ dmypy.json | |
|
||
# Cython debug symbols | ||
cython_debug/ | ||
|
||
*.pem |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,27 +32,29 @@ function do_login() { | |
|
||
<template> | ||
<div> | ||
<fwb-input | ||
v-model="login_email_address" | ||
required | ||
id="login_email" | ||
placeholder="[email protected]" | ||
maxlength="256" | ||
autocomplete="username" | ||
label="Email" | ||
class="mb-2" | ||
/> | ||
<fwb-input | ||
v-model="login_password" | ||
required | ||
id="login_password" | ||
type="password" | ||
maxlength="256" | ||
autocomplete="current-password" | ||
label="Password" | ||
class="mb-2" | ||
/> | ||
<fwb-button @click="do_login" class="mb-2">Login</fwb-button> | ||
<form @submit.prevent="do_login"> | ||
<fwb-input | ||
v-model="login_email_address" | ||
required | ||
id="login_email" | ||
placeholder="[email protected]" | ||
maxlength="256" | ||
autocomplete="username" | ||
label="Email" | ||
class="mb-2" | ||
/> | ||
<fwb-input | ||
v-model="login_password" | ||
required | ||
id="login_password" | ||
type="password" | ||
maxlength="256" | ||
autocomplete="current-password" | ||
label="Password" | ||
class="mb-2" | ||
/> | ||
<fwb-button type="submit" class="mb-2">Login</fwb-button> | ||
</form> | ||
<fwb-alert type="danger" v-if="login_error_message.length > 0"> | ||
{{ login_error_message }} | ||
</fwb-alert> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters