dvaz commited on
Commit
1c68e67
·
1 Parent(s): 68a7fbf

Update Home.py

Browse files
Files changed (1) hide show
  1. Home.py +12 -1
Home.py CHANGED
@@ -44,6 +44,17 @@ with st.container():
44
  <input type="text" name="name" required placeholder="Your name">
45
  <input type="email" name="email" required placeholder="Your email">
46
  <textarea name="message" placeholder="Your message here" required></textarea>
 
47
  <button type="submit">Send</button>
48
  </form>
49
- """)
 
 
 
 
 
 
 
 
 
 
 
44
  <input type="text" name="name" required placeholder="Your name">
45
  <input type="email" name="email" required placeholder="Your email">
46
  <textarea name="message" placeholder="Your message here" required></textarea>
47
+ <br></br>
48
  <button type="submit">Send</button>
49
  </form>
50
+
51
+ <style>
52
+ input[type=text],input[type=email], textarea {width: 50%;padding: 12px;border: 1px solid #ccc;border-radius: 4px;box-sizing: border-box;margin-top: 6px;margin-bottom: 16px;resize: vertical;}
53
+ button[type=submit] {background-color: #04AA6D;color: white;padding: 12px 20px;border: none;border-radius: 4px;cursor: pointer;}
54
+ button[type=submit]:hover {background-color: #45a049}
55
+ </style>
56
+
57
+
58
+ """,height=300)
59
+
60
+ st.write('---')