| <html> | |
| <head> | |
| <title>My Flask App</title> | |
| </head> | |
| <body> | |
| <h1>Welcome to My Flask App!</h1> | |
| <p>This is the add page.</p> <br> | |
| <br> | |
| <a href="/date">Go to Date Page</a> <br> | |
| <br> | |
| <form action="/addkaro" method="get"> | |
| <input type="number" name="phelanumber" placeholder="Enter first number" required> | |
| <input type="number" name="dusranumber" placeholder="Enter second number" required> | |
| <button type="submit">Add</button> | |
| </form> | |
| {% if c is defined %} | |
| <b style="color: blue;">{{o}}: {{c}}</b> | |
| {% endif %} | |
| </body> | |
| </html> |