Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

display.cfm 1.1 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Add Students</title>
  7. <!-- Add your CSS stylesheets or include CSS frameworks here -->
  8. </head>
  9. <body>
  10. <h1>Add Students</h1>
  11. <!-- Display success or error messages if they exist -->
  12. <cfif StructKeyExists(rc, "message")>
  13. <p><strong>#rc.message#</strong></p>
  14. </cfif>
  15. <!-- Display the form for creating a new student -->
  16. <form action="data.cfm" method="post">
  17. <label for="sname">Name:</label>
  18. <input type="text" name="sname" id="sname"><br>
  19. <label for="major">Major:</label>
  20. <input type="text" name="major" id="major"><br>
  21. <label for="level">Level:</label>
  22. <input type="text" name="level" id="level"><br>
  23. <label for="byear">Birth Year:</label>
  24. <input type="text" name="byear" id="byear"><br>
  25. <input type="hidden" name="action" value="create"> <!-- Add a hidden input for action -->
  26. <button type="submit">Create New Student</button><br>
  27. </form>
  28. </body>
  29. </html>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...