-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable import from bank account if TAN is required after login
- Loading branch information
1 parent
c9af60e
commit 751f2ae
Showing
6 changed files
with
192 additions
and
6 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{# | ||
Copyright (c) 2015 The Pycroft Authors. See the AUTHORS file. | ||
This file is part of the Pycroft project and licensed under the terms of | ||
the Apache License, Version 2.0. See the LICENSE file for details. | ||
#} | ||
{% extends "layout.html" %} | ||
|
||
{% set page_title = "FinTS-Zugang erlangen" %} | ||
|
||
{% import "macros/forms.html" as forms %} | ||
|
||
{% block single_row_content %} | ||
{{ forms.simple_form(form, '', url_for('.bank_accounts_list') ) }} | ||
{% endblock %} |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{# | ||
Copyright (c) 2015 The Pycroft Authors. See the AUTHORS file. | ||
This file is part of the Pycroft project and licensed under the terms of | ||
the Apache License, Version 2.0. See the LICENSE file for details. | ||
#} | ||
{% extends "layout.html" %} | ||
|
||
{% set page_title = "FinTS-Zugang erlangen" %} | ||
|
||
{% import "macros/forms.html" as forms %} | ||
|
||
{% block content %} | ||
<div class="container"> | ||
<div class="row"> | ||
{{ forms.simple_form(form, url_for('.bank_accounts_' ~ action, bank_account_id=bank_account_id), url_for('.bank_accounts_list'), autocomplete="on") }} | ||
</div> | ||
|
||
<div class="row mt-3 w-25"> | ||
<img src="{{ qrcode }}"></img> | ||
</div> | ||
</div> | ||
{% endblock %} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{# | ||
Copyright (c) 2015 The Pycroft Authors. See the AUTHORS file. | ||
This file is part of the Pycroft project and licensed under the terms of | ||
the Apache License, Version 2.0. See the LICENSE file for details. | ||
#} | ||
{% extends "layout.html" %} | ||
|
||
{% set page_title = "FinTS-Zugang erlangen" %} | ||
|
||
{% import "macros/forms.html" as forms %} | ||
|
||
{% block single_row_content %} | ||
{{ forms.simple_form(form, '', url_for('finance.login') ) }} | ||
{% endblock %} |