From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [138.197.159.143]) by gnuweeb.org (Postfix) with ESMTPSA id 47FC87F745; Fri, 27 May 2022 20:39:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1653683965; bh=xwTb5kgK8N5HbtwxiOleNika6TCgsBdIKay7wmIrEY0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WD9e+FSdtUzRTIlSZej/evFQuOpM3C3ca2o9+65GE9ka4YrvOo3hD/lXQ2L6Q44mv 3unub5kZ4JUn92AnohboA0MT873GtUTXmi974U+oyOpZhD5nVgo8sgF+4t5ntY8Ov9 gWJp9O3UBK64wlDCiYSftjgrYtQmafGtn69F9a6NQGtqPrJDsso+JdcQBIhcriYD+k pdCDCcV/SM1a5U6YYi1G1II24c0B2CLwpCvTsReHxV/Lpohf6Skqao9siiXwslffcc ciH8ZF2JhN1iWIZ4nzvuZQnZoZpJ+J9O9W2bald16BGoBH86o/XM63K7Y9zCWtGgMo n2Wl6R4z51mkw== From: Alviro Iskandar Setiawan To: Fernanda Ma'rouf , Akiekano Cc: Alviro Iskandar Setiawan , Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH buubuu v1 2/5] view: Create login.html Date: Fri, 27 May 2022 20:39:17 +0000 Message-Id: <20220527203920.2474126-2-alviro.iskandar@gnuweeb.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Create login.html view file. We will render this file from Login() function in the auth-controller. Signed-off-by: Alviro Iskandar Setiawan --- view/login.html | 70 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 view/login.html diff --git a/view/login.html b/view/login.html new file mode 100644 index 0000000..3b74e0a --- /dev/null +++ b/view/login.html @@ -0,0 +1,70 @@ + + + + Login + + + + + + + -- Alviro Iskandar Setiawan