Python Forum
Python redirect users to another url after form post
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python redirect users to another url after form post
#6
Look if this is what you want...

<!DOCTYPE html>
    <html>
        <head>
          <meta charset="utf-8">
          <title>Redirect Test</title>
        </head>

        <body>

        <form action="/" method="POST">
          First name:<br>
          <input type="text" name="firstname"><br>
          Last name:<br>
          <input type="text" name="lastname">
          <br>
          <input type="submit" value="Submit" onclick="redirect()">
        </form>

        <script>
            var redirect = function() {
                 setTimeout(function(){
                     window.location.href = 'http://www.google.com/';
                     }, 1);
                 };
        </script>

        </body>
</html>
Reply


Messages In This Thread
RE: Python redirect users to another url after form post - by gontajones - Jun-28-2018, 11:53 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python and pandas: Aggregate lines form Excel sheet Glyxbringer 12 2,229 Oct-31-2023, 10:21 AM
Last Post: Pedroski55
  redirect STDIO in the Python code Skaperen 6 1,476 Jul-05-2023, 12:23 AM
Last Post: Skaperen
  Start Putty into Python Form Schlazen 5 5,688 Dec-13-2022, 06:28 AM
Last Post: divya130
  Error creating database with python and form? shams 3 2,470 Aug-02-2021, 02:00 PM
Last Post: deanhystad
  Error using mariadb select query with form in python? shams 2 2,122 Jul-29-2021, 12:30 PM
Last Post: shams
  stderr redirect to file fmr300 2 3,761 Apr-03-2021, 01:31 AM
Last Post: fmr300
  Cannot redirect print to a file tester_V 3 2,601 Sep-11-2020, 12:21 AM
Last Post: tester_V
  html, python, a simple form test 1 2,023 Aug-09-2020, 01:59 PM
Last Post: snippsat
  redirect url_for passing arguments with the url Leon79 1 1,729 Jul-09-2020, 05:20 PM
Last Post: Leon79
  How to make Python 3.7.6 accessible to users Doguhan 4 2,893 May-19-2020, 05:36 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020