From 355accd1ad6ea13293678da1729394d4017f7bb5 Mon Sep 17 00:00:00 2001
From: Raghav <raghavsmart1213@gmail.com>
Date: Wed, 26 Feb 2025 05:18:37 +0000
Subject: [PATCH] Data send through GET method to test.php

---
 _templates/login-content.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/_templates/login-content.php b/_templates/login-content.php
index 29e17e9..ed217d6 100644
--- a/_templates/login-content.php
+++ b/_templates/login-content.php
@@ -1,13 +1,13 @@
-<form>
+<form action="/photogram-project-php/test.php" method="get">
     <img  class="mb-4 center" src="/photogram-project-php/assets/brand/devyani_logo_edit_light copy.svg" alt="" width="72" height="77">
     <h1 class="h3 mb-3 fw-normal">Please sign in</h1>
 
     <div class="form-floating">
-      <input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
+      <input name="email" type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
       <label for="floatingInput">Email address</label>
     </div>
     <div class="form-floating">
-      <input type="password" class="form-control" id="floatingPassword" placeholder="Password">
+      <input name="password" type="password" class="form-control" id="floatingPassword" placeholder="Password">
       <label for="floatingPassword">Password</label>
     </div>
 
-- 
GitLab