rull commited on
Commit
16f620b
·
verified ·
1 Parent(s): 0630c4e

Update templates/forward.html

Browse files
Files changed (1) hide show
  1. templates/forward.html +56 -1
templates/forward.html CHANGED
@@ -1 +1,56 @@
1
- {{ content }}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Modern Form Example</title>
7
+ <style>
8
+ /* Basic styles for a clean and modern look */
9
+ body {
10
+ font-family: sans-serif;
11
+ margin: 20px;
12
+ }
13
+
14
+ .form-container {
15
+ display: flex;
16
+ flex-direction: column;
17
+ gap: 10px;
18
+ border: 1px solid #ddd;
19
+ padding: 20px;
20
+ border-radius: 5px;
21
+ }
22
+
23
+ .form-label {
24
+ font-weight: bold;
25
+ margin-bottom: 5px;
26
+ }
27
+
28
+ .form-input {
29
+ padding: 10px;
30
+ border: 1px solid #ccc;
31
+ border-radius: 3px;
32
+ }
33
+
34
+ .form-button {
35
+ background-color: #4CAF50;
36
+ color: white;
37
+ padding: 10px 20px;
38
+ border: none;
39
+ border-radius: 5px;
40
+ cursor: pointer;
41
+ }
42
+ </style>
43
+ </head>
44
+ <body>
45
+ <h1>{{content}}</h1>
46
+ <div class="form-container">
47
+ <label for="name" class="form-label">Your Name:</label>
48
+ <input type="text" id="name" name="name" class="form-input" placeholder="Enter your name">
49
+
50
+ <label for="email" class="form-label">Email Address:</label>
51
+ <input type="email" id="email" name="email" class="form-input" placeholder="Enter your email">
52
+
53
+ <button type="submit" class="form-button">Submit</button>
54
+ </div>
55
+ </body>
56
+ </html>