主頁 > 作業系統 > 在Bootstrap頂部使用燒瓶wtf從另一個頁面登錄模式內容,如何獲得表單答案?

在Bootstrap頂部使用燒瓶wtf從另一個頁面登錄模式內容,如何獲得表單答案?

2022-04-29 15:07:36 作業系統

我是 HTML 編程的新手,所以我會盡力描述我的問題。這是改編自 Miguel Grinberg 的 Flask 教程,使用 Boostrap 4.6,經過大量研究。我的頁面是從基本模板擴展而來的。我的基地包含一個登錄模式頁面的鏈接,該頁面從一個單獨的 HTML 檔案中獲取其內容。我正在為這個登錄模式頁面使用 Flask WTF。當我登錄并單擊“注冊”按鈕時,似乎它重新加載了我所在的頁面。我認為它向該頁面的路由發送 form.submit 答案(例如,在 VS Code 的終端中,它說有一個到 /index 的 POST),所以問題是我怎樣才能獲得登錄的“登錄”按鈕答案路線?我已經找到了類似這個問題的答案,但還不足以實作它們。

(相關)routes.py:

from app import app, db
from app.models import User, Notification, Rule
from flask import render_template, flash, redirect, url_for, request, g, jsonify
from flask_login import current_user, login_user, logout_user, login_required
from app.forms import LoginForm, RegistrationForm, RuleForm

@app.route('/')
@app.route('/index', methods=['GET', 'POST'])
def index():
    if not current_user.is_authenticated:
        current_user.username="Guest User"
    return render_template('index.html', title='Home')

@app.route('/login', methods=['GET', 'POST'])
def login_modal():
    print("login_modal init")
    if current_user.is_authenticated:
        return redirect(url_for('index'))
    form = LoginForm()
    if form.validate_on_submit():
        print("validate form")
        user = User.query.filter_by(username=form.username.data).first()
        if user is None or not user.check_password(form.password.data):
            flash('Invalid username or password!', 'warning')
            return redirect(url_for('login'))
        login_user(user, remember=form.remember_me.data)
        flash('Successfull login!', 'success')
        return redirect(url_for('index'))
    return render_template('login-modal.html', title='Sign In', form=form)

這是我的基地:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="">
    <meta name="author" content="">

    <!-- Custom fonts for this template-->
    <link href="{{ url_for('static', filename='fontawesome-free/css/all.min.css') }}" rel="stylesheet" type="text/css"> 
    <link
        href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
        rel="stylesheet">

    <!-- Custom styles for this template-->
    <link href="{{ url_for('static', filename='css/notificationservice.min.css') }}" rel="stylesheet">
    
    <link href="{{ url_for('static', filename='css/dataTables.bootstrap4.min.css') }}" rel="stylesheet">
    
    <link href="https://cdn.jsdelivr.net/gh/Eonasdan/tempus-dominus@master/dist/css/tempus-dominus.css"
    rel="stylesheet" crossorigin="anonymous">
    
    <!-- Bootstrap core JavaScript-->
    <script src="{{ url_for('static', filename='js/jquery/jquery.min.js') }}"></script> 
    <script src="{{ url_for('static', filename='bootstrap-v4.6.0-dist/js/bootstrap.bundle.min.js') }}"></script> 
    <script src="{{ url_for('static', filename='bootstrap-v4.6.0-dist/js/bootstrap.min.js') }}"></script> 

    <!-- Core plugin JavaScript-->
    <script src="{{ url_for('static', filename='js/jquery-easing/jquery.easing.min.js') }}"></script> 

    <!-- Custom scripts for all pages-->
    <script src="{{ url_for('static', filename='js/notificationservice.min.js') }}"></script> 

    <!-- Page level plugins -->
    <script src="{{ url_for('static', filename='js/jquery/jquery.dataTables.min.js') }}"></script> 
    <script src="{{ url_for('static', filename='js/dataTables.bootstrap4.min.js') }}"></script> 

    <!-- Page level custom scripts -->
    <script src="{{ url_for('static', filename='js/datatables-demo.js') }}"></script>
    
    
    <!-- Favicon -->
    <link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='smartphone.ico') }}"> 
    
    <title>Notification Service - {{title}}</title>

</head>

<body id="page-top">        
    <!-- Page Wrapper -->
    <div id="wrapper">

        <!-- Sidebar -->
        <ul class="navbar-nav bg-gradient-primary sidebar sidebar-dark accordion" id="accordionSidebar">

            <!-- Sidebar - Brand -->
            <a class="sidebar-brand d-flex align-items-center justify-content-center" href="{{url_for('index')}}">
                <div class="sidebar-brand-icon">
                    <i class="fas fa-satellite-dish"></i>
                </div>
                <div class="sidebar-brand-text mx-3">Notification Service</div>
            </a>

            <!-- Divider -->
            <hr class="sidebar-divider">
            <!-- Nav Item - Notifications -->
            <li class="nav-item">
                <a class="nav-link" href="{{url_for('notifications')}}">
                    <i class="fas fa-bullhorn"></i>
                    <span >Notifications</span></a>
                <p></p>
            </li>

            <!-- Divider -->
            <hr class="sidebar-divider d-none d-md-block">
            <!-- Nav Item - Rules -->
            <li class="nav-item">
                <a class="nav-link" href="{{url_for('rules')}}">
                    <i class="fas fa-scroll"></i>
                    <span>Rules</span></a>
                <p></p>
            </li>

            {%if current_user.username == 'admin' %}
            <!-- Divider -->
            <hr class="sidebar-divider">
            <!-- Nav Item - Manage Accounts -->
            <li class="nav-item">
                <a class="nav-link" href="{{url_for('accounts')}}">
                    <i class="fas fa-tools"></i>
                    <span>Manage Accounts</span></a>
                <p></p>
            </li>
              <!-- Divider -->
              <hr class="sidebar-divider">
              <!-- Nav Item - Manage Accounts -->
              <li class="nav-item">
                  <a class="nav-link" href="{{url_for('rules_configure')}}">
                      <i class="fas fa-tools"></i>
                      <span>Configure Rules</span></a>
                  <p></p>
              </li>
            {% endif %}
            
            <!-- Divider -->
            <hr class="sidebar-divider d-none d-md-block">
            <!-- Sidebar Toggler (Sidebar) -->
            <div class="text-center d-none d-md-inline">
                <button class="rounded-circle border-0" id="sidebarToggle"></button>
            </div>

        </ul>
        <!-- End of Sidebar -->

        <!-- Content Wrapper -->
        <div id="content-wrapper" class="d-flex flex-column">

            <!-- Main Content -->
            <div id="content">

                <!-- Topbar -->
                <nav class="navbar navbar-expand navbar-light bg-white topbar mb-4 static-top shadow">
                    <div class="container" style="display:flex;justify-content:center;">
                        <div class="container" style="display:inline;text-align:center;width:auto;">
                            {% with messages = get_flashed_messages(with_categories=true) %}
                                {% if messages %}
                                {% for category, message in messages %}
                                    {% if category == 'message' %}
                                        <div class="alert alert-primary alert-dismissible" id="alert" role="alert" 
                                            style="margin-bottom: 0rem;">
                                    {% else %}
                                        <div class="alert alert-{{ category }} " id="alert" role="alert" 
                                            style="margin-bottom: 0rem;">
                                    {% endif %}
                                        {{ message }}
                                    </div>
                                {% endfor %}
                                {% endif %}
                            {% endwith %}
                        </div>
                    </div>
                    <!-- Sidebar Toggle (Topbar) -->
                    <button id="sidebarToggleTop" class="btn btn-link d-md-none rounded-circle mr-3">
                        <i class="fa fa-bars"></i>
                    </button>


                    <!-- Topbar Navbar -->
                    <ul class="navbar-nav ml-auto">
                        <div class="topbar-divider d-none d-sm-block"></div>

                        <!-- Nav Item - User Information -->
                        <li class="nav-item dropdown no-arrow">
                            <a class="nav-link dropdown-toggle" id="userDropdown" role="button"
                                data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                                <span class="mr-2 d-none d-lg-inline text-gray-600 small">{% if current_user.is_authenticated %}
                                    {{current_user.username}}{%else%}Guest User{% endif %}</span>
                                <div class="sidebar-brand-icon">
                                    {% if current_user.is_authenticated %}
                                        <i class="fas fa-user-check fa-2x"></i>
                                    {%else%}
                                        <i class="fas fa-user-times fa-2x"></i>
                                    {% endif %}
                                    
                                    <!--<i ></i>-->
                                </div>
                            </a>
                            {% if current_user.is_authenticated %}
                            <!-- Dropdown - User Information -->
                            <div class="dropdown-menu dropdown-menu-right shadow animated--grow-in"
                                aria-labelledby="userDropdown">
                                <a class="dropdown-item" href="{{url_for('profile', username=current_user.username)}}">
                                    <i class="fas fa-user fa-sm fa-fw mr-2 text-gray-400"></i>
                                    Profile
                                </a>
                                <div class="dropdown-divider"></div>
                                <a class="dropdown-item" href="{{url_for('logout')}}" data-toggle="modal" data-target="#logoutModal">
                                    <i class="fas fa-sign-out-alt fa-sm fa-fw mr-2 text-gray-400"></i>
                                    Logout
                                </a>
                            </div>
                            {% else %}
                            <div class="dropdown-menu dropdown-menu-right shadow animated--grow-in"
                                aria-labelledby="userDropdown">
                                <a class="dropdown-item" href="{{url_for('login_modal')}}" data-toggle="modal" 
                                    data-target="#loginModal">
                                    <i class="fas fa-sign-in-alt fa-sm fa-fw mr-2 text-gray-400"></i>
                                    Login
                                </a>
                                <div class="dropdown-divider"></div>
                                <a class="dropdown-item" href="{{url_for('register')}}">
                                    <i class="fas fa-book fa-sm fa-fw mr-2 text-gray-400"></i>
                                    Register
                                </a>
                            </div>
                            {%endif%}
                        </li>

                    </ul>

                </nav>
                <!-- End of Topbar -->

                <!-- Begin Page Content -->
                <div class="container-fluid">
                    {% block app_content %}
                    {% endblock %}
                </div>
                
            </div>
            <!-- End of Main Content -->

            <!-- Footer -->
            <footer class="sticky-footer bg-white">
                <div class="container my-auto">
                    <div class="copyright text-center my-auto">
                        <span>NS 2022 &copy;</span>
                    </div>
                </div>
            </footer>
            <!-- End of Footer -->

        </div>
        <!-- End of Content Wrapper -->

    </div>
    <!-- End of Page Wrapper -->

    <!-- Scroll to Top Button-->
    <a class="scroll-to-top rounded" href="#page-top">
        <i class="fas fa-angle-up"></i>
    </a>   
    <!-- Login Modal-->
    <div class="modal fade" id="loginModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
        aria-hidden="true">
        <div class="modal-dialog" role="document">
            <div class="modal-content">
            </div>
        </div>
    </div>
    <!-- Logout Modal-->
    <div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
        aria-hidden="true">
        <div class="modal-dialog" role="document">
            <div class="modal-content">
                <div class="modal-header">
                    <h5 class="modal-title" id="exampleModalLabel">Ready to Leave?</h5>
                    <button class="close" type="button" data-dismiss="modal" aria-label="Close">
                        <span aria-hidden="true">×</span>
                    </button>
                </div>
                <div class="modal-body">Select "Logout" below if you are ready to end your current session.</div>
                <div class="modal-footer">
                    <button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>
                    <a class="btn btn-primary" href="{{url_for('logout')}}">Logout</a>
                </div>
            </div>
        </div>
    </div>

    <script>
        $('body').on('click', '[data-target="#loginModal"]', function(){
            $($(this).data("target") ' .modal-content').load($(this).attr('href'));
        }); 
    </script>

    <script type="text/javascript">
        $(document).ready(function() {
        setTimeout(function() {
            $('#alert').fadeOut('slow');
        }, 3000); // <-- time in milliseconds
        });
    </script>

    <script type="text/javascript">
        $(document).ready(function() {
            $("#sidebarToggle").click(function(e) {
                e.preventDefault();
                $("#accordionSidebar").toggleClass("toggled");
                $('#accordionSidebar.toggled').find("#sidebar").find(".collapse").collapse('hide');
            });
        });
    </script>

    </body>

</html>

這是我的 index.html:

{% extends 'base.html' %}
{% set active_page = "index" %}

{% block app_content %}
    <h1 class="header_text">Some content...</h1>
{% endblock %}

登錄頁面:

<div class="card-body p-0">
    <!-- Nested Row within Card Body -->
    <div class="row">
        <div class="col-lg-12">
            <div class="p-5">
                <div class="text-center">
                    <h1 class="h4 text-gray-900 mb-4">Login</h1>
                </div>
                <form class="user" action="" method="post" id="loginForm" novalidate>
                    <div class="form-group has-validation">
                        <div>
                        {{ form.username(   
                            (" is-invalid" if form.username.errors else ""), placeholder="Username", 
                            id="inputValUsername", size=32, **{"aria-describedby": "inputValUsername", 
                            "required": ""}) }}
                        </div>
                        {% for error in form.username.errors %}
                        <div class="text-danger">
                            <small>{{ error }}</small>
                        </div>
                        {% endfor %}
                    </div>
                    <div class="form-group has-validation">
                        <div>
                        {{ form.password(   
                            (" is-invalid" if form.password.errors else ""), placeholder="Password", 
                            id="inputValPassword", size=32, **{"aria-describedby": "inputValPassword", 
                            "required": ""}) }}
                        </div>
                        {% for error in form.password.errors %}
                        <div class="text-danger">
                            <small>{{ error }}</small>
                        </div>
                        {% endfor %}
                    </div>
                    <div class="form-group">
                        <div class="custom-control custom-checkbox small">
                            {{ form.remember_me() }} {{ form.remember_me.label }}
                        </div>
                    </div>
                    {{ form.submit(, id='form-submit') }}
                </form>
                <hr>
                <div class="text-center">
                    <a class="small" href="{{url_for('forgot')}}">Forgot Password?</a>
                </div>
                <div class="text-center">
                    <a class="small" href="{{url_for('register')}}">Create an Account!</a>
                </div>
                <div class="text-center">
                    <a class="small" href="{{url_for('index')}}">Back to Notification Service Home</a>
                </div>
            </div>
        </div>
    </div>
</div>

uj5u.com熱心網友回復:

在您的表單中,html 元素更改action=""action="/login"

轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/467334.html

標籤:javascript Python 烧瓶

上一篇:限制上傳燒瓶或瓶子中特定影像以外的任何影像

下一篇:如果燒瓶IF陳述句為真,則更改HTML并顯示導航欄

標籤雲
其他(157675) Python(38076) JavaScript(25376) Java(17977) C(15215) 區塊鏈(8255) C#(7972) AI(7469) 爪哇(7425) MySQL(7132) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4554) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2429) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1958) Web開發(1951) python-3.x(1918) HtmlCss(1915) 弹簧靴(1913) C++(1909) xml(1889) PostgreSQL(1872) .NETCore(1853) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • CA和證書

    1、在 CentOS7 中使用 gpg 創建 RSA 非對稱密鑰對 gpg --gen-key #Centos上生成公鑰/密鑰對(存放在家目錄.gnupg/) 2、將 CentOS7 匯出的公鑰,拷貝到 CentOS8 中,在 CentOS8 中使用 CentOS7 的公鑰加密一個檔案 gpg -a ......

    uj5u.com 2020-09-10 00:09:53 more
  • Kubernetes K8S之資源控制器Job和CronJob詳解

    Kubernetes的資源控制器Job和CronJob詳解與示例 ......

    uj5u.com 2020-09-10 00:10:45 more
  • VMware下安裝CentOS

    VMware下安裝CentOS 一、軟硬體準備 1 Centos鏡像準備 1.1 CentOS鏡像下載地址 下載地址 1.2 CentOS鏡像下載程序 點擊下載地址進入如下圖的網站,選擇需要下載的版本,這里選擇的是Centos8,點擊如圖所示。 決定選擇Centos8后,選擇想要的鏡像源進行下載,此 ......

    uj5u.com 2020-09-10 00:12:10 more
  • 如何使用Grep命令查找多個字串

    如何使用Grep 命令查找多個字串 大家好,我是良許! 今天向大家介紹一個非常有用的技巧,那就是使用 grep 命令查找多個字串。 簡單介紹一下,grep 命令可以理解為是一個功能強大的命令列工具,可以用它在一個或多個輸入檔案中搜索與正則運算式相匹配的文本,然后再將每個匹配的文本用標準輸出的格式 ......

    uj5u.com 2020-09-10 00:12:28 more
  • git配置http代理

    git配置http代理 經常遇到克隆 github 慢的問題,這里記錄一下幾種配置 git 代理的方法,解決 clone github 過慢。 目錄 git配置代理 git單獨配置github代理 git配置全域代理 配置終端環境變數 git配置代理 主要使用 git config 命令 git單獨 ......

    uj5u.com 2020-09-10 00:12:33 more
  • Linux npm install 裝包時提示Error EACCES permission denied解

    npm install 裝包時提示Error EACCES permission denied解決辦法 ......

    uj5u.com 2020-09-10 00:12:53 more
  • Centos 7下安裝nginx,使用yum install nginx,提示沒有可用的軟體包

    Centos 7下安裝nginx,使用yum install nginx,提示沒有可用的軟體包。 18 (flaskApi) [root@67 flaskDemo]# yum -y install nginx 19 已加載插件:fastestmirror, langpacks 20 Loading ......

    uj5u.com 2020-09-10 00:13:13 more
  • Linux查看服務器暴力破解ssh IP

    在公網的服務器上經常遇到別人爆破你服務器的22埠,用來挖礦或者干其他嘿嘿嘿的事情~ 這種情況下正確的做法是: 修改默認ssh的22埠 使用設定密鑰登錄或者白名單ip登錄 建議服務器密碼為復雜密碼 創建普通用戶登錄服務器(root權限過大) 建立堡壘機,實作統一管理服務器 統計爆破IP [root ......

    uj5u.com 2020-09-10 00:13:17 more
  • CentOS 7系統常見快捷鍵操作方式

    Linux系統中一些常見的快捷方式,可有效提高操作效率,在某些時刻也能避免操作失誤帶來的問題。 ......

    uj5u.com 2020-09-10 00:13:31 more
  • CentOS 7作業系統目錄結構介紹

    作業系統存在著大量的資料檔案資訊,相應檔案資訊會存在于系統相應目錄中,為了更好的管理資料資訊,會將系統進行一些目錄規劃,不同目錄存放不同的資源。 ......

    uj5u.com 2020-09-10 00:13:35 more
最新发布
  • vim的常用命令

    Vim的6種基本模式 1. 普通模式在普通模式中,用的編輯器命令,比如移動游標,洗掉文本等等。這也是Vim啟動后的默認模式。這正好和許多新用戶期待的操作方式相反(大多數編輯器默認模式為插入模式)。 2. 插入模式在這個模式中,大多數按鍵都會向文本緩沖中插入文本。大多數新用戶希望文本編輯器編輯程序中一 ......

    uj5u.com 2023-04-20 08:43:21 more
  • vim的常用命令

    Vim的6種基本模式 1. 普通模式在普通模式中,用的編輯器命令,比如移動游標,洗掉文本等等。這也是Vim啟動后的默認模式。這正好和許多新用戶期待的操作方式相反(大多數編輯器默認模式為插入模式)。 2. 插入模式在這個模式中,大多數按鍵都會向文本緩沖中插入文本。大多數新用戶希望文本編輯器編輯程序中一 ......

    uj5u.com 2023-04-20 08:42:36 more
  • docker學習

    ###Docker概述 真實專案部署環境可能非常復雜,傳統發布專案一個只需要一個jar包,運行環境需要單獨部署。而通過Docker可將jar包和相關環境(如jdk,redis,Hadoop...)等打包到docker鏡像里,將鏡像發布到Docker倉庫,部署時下載發布的鏡像,直接運行發布的鏡像即可。 ......

    uj5u.com 2023-04-19 09:26:53 more
  • 設定Windows主機的瀏覽器為wls2的默認瀏覽器

    這里以Chrome為例。 1. 準備作業 wsl是可以使用Windows主機上安裝的exe程式,出于安全考慮,默認情況下改功能是無法使用。要使用的話,終端需要以管理員權限啟動。 我這里以Windows Terminal為例,介紹如何默認使用管理員權限打開終端,具體操作如下圖所示: 2. 操作 wsl ......

    uj5u.com 2023-04-19 09:25:49 more
  • docker學習

    ###Docker概述 真實專案部署環境可能非常復雜,傳統發布專案一個只需要一個jar包,運行環境需要單獨部署。而通過Docker可將jar包和相關環境(如jdk,redis,Hadoop...)等打包到docker鏡像里,將鏡像發布到Docker倉庫,部署時下載發布的鏡像,直接運行發布的鏡像即可。 ......

    uj5u.com 2023-04-19 09:19:04 more
  • Linux學習筆記

    IP地址和主機名 IP地址 ifconfig可以用來查詢本機的IP地址,如果不能使用,可以通過install net-tools安裝。 Centos系統下ens33表示主網卡;inet后表示IP地址;lo表示本地回環網卡; 127.0.0.1表示代指本機;0.0.0.0可以用于代指本機,同時在放行設 ......

    uj5u.com 2023-04-18 06:52:01 more
  • 解決linux系統的kdump服務無法啟動的問題

    問題:專案麒麟系統服務器的kdump服務無法啟動,沒有相關日志無法定位問題。 1、查看服務狀態是關閉的,重啟系統也無法啟動 systemctl status kdump 2、修改grub引數,修改“crashkernel”為“512M(有的機器數值太大太小都會導致報錯,建議從128M開始試,或者加個 ......

    uj5u.com 2023-04-12 09:59:50 more
  • 解決linux系統的kdump服務無法啟動的問題

    問題:專案麒麟系統服務器的kdump服務無法啟動,沒有相關日志無法定位問題。 1、查看服務狀態是關閉的,重啟系統也無法啟動 systemctl status kdump 2、修改grub引數,修改“crashkernel”為“512M(有的機器數值太大太小都會導致報錯,建議從128M開始試,或者加個 ......

    uj5u.com 2023-04-12 09:59:01 more
  • 你是不是暴露了?

    作者:袁首京 原創文章,轉載時請保留此宣告,并給出原文連接。 如果您是計算機相關從業人員,那么應該經歷不止一次網路安全專項檢查了,你肯定是收到過資訊系統技術檢測報告,要求你加強風險監測,確保你提供的系統服務堅實可靠了。 沒檢測到問題還好,檢測到問題的話,有些處理起來還是挺麻煩的,尤其是線上正在運行的 ......

    uj5u.com 2023-04-05 16:52:56 more
  • 細節拉滿,80 張圖帶你一步一步推演 slab 記憶體池的設計與實作

    1. 前文回顧 在之前的幾篇記憶體管理系列文章中,筆者帶大家從宏觀角度完整地梳理了一遍 Linux 記憶體分配的整個鏈路,本文的主題依然是記憶體分配,這一次我們會從微觀的角度來探秘一下 Linux 內核中用于零散小記憶體塊分配的記憶體池 —— slab 分配器。 在本小節中,筆者還是按照以往的風格先帶大家簡單 ......

    uj5u.com 2023-04-05 16:44:11 more