in reply to Re^11: Need to know the process to implement perl script into web application server.
in thread Need to know the process to implement perl script into web application server.
Hello Sir, How can i add multiple sub program under single query.tt in my Dancer2 app? Please check my current code but i would like add redio buttons for multiple app and its respective submit buttons , If i hit any of the redio buttons then its targetting to to main program only. but i will need its should target its respective sub program
My Current query.tt
<form id="f1" method="post" action="/"> <style> body { background-color: #ABBAEA; } div { height: 200px; background-color: #FBD603; } </style> <body> <div> <p>Synchrony OKTA MFA N +etwork Analysis Report Automated Application </p> <label for="APPID">Application ID</label> <input id="text" name="APPID"> <label for="date">Time in Hours</label> <input id="date" name="date"> <label for="Email">Recipient Email</label> <input id="email" name="Email"> <button>Submit</button> </div> <div> <input type="radio" name="Preview Users List"> <label for="Preview Users List">OKTA Preview Users List</label> <button>Submit</button> </div> </body> </form> <form id="f11" method="post" action="/"> <style> body { background-color: #ABBAEA; } div { height: 200px; background-color: #FBD603; } </style> <body> <div> <input type="radio" name="Preview Users List"> <label for="Preview Users List">OKTA Preview Users List</label> <button>Submit</button> </div> </body> </form>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^13: Need to know the process to implement perl script into web application server.
by choroba (Cardinal) on May 23, 2021 at 16:58 UTC | |
by chandantul (Scribe) on May 24, 2021 at 01:53 UTC | |
by choroba (Cardinal) on May 24, 2021 at 19:16 UTC | |
by chandantul (Scribe) on Jul 15, 2021 at 02:05 UTC | |
by choroba (Cardinal) on Jul 15, 2021 at 07:28 UTC | |
| |
|