Skip to content

Commit

Permalink
Regen example
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-josef-spacek committed Feb 7, 2024
1 parent 71acdd6 commit 7a2c906
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
0.02
- Regen example.

0.01 2024-02-07T21:01:43+01:00
- First version.
82 changes: 80 additions & 2 deletions examples/print_block_html_and_css.pl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,85 @@

# Output:
# CSS
# TODO
# .form-change-password {
# width: 300px;
# background-color: #f2f2f2;
# padding: 20px;
# border-radius: 5px;
# box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
# }
# .form-change-password fieldset {
# border: none;
# padding: 0;
# margin-bottom: 20px;
# }
# .form-change-password legend {
# font-weight: bold;
# margin-bottom: 10px;
# }
# .form-change-password p {
# margin: 0;
# padding: 10px 0;
# }
# .form-change-password label {
# display: block;
# font-weight: bold;
# margin-bottom: 5px;
# }
# .form-change-password input[type="text"], .form-change-password input[type="password"] {
# width: 100%;
# padding: 8px;
# border: 1px solid #ccc;
# border-radius: 3px;
# }
# .form-change-password button[type="submit"] {
# width: 100%;
# padding: 10px;
# background-color: #4CAF50;
# color: #fff;
# border: none;
# border-radius: 3px;
# cursor: pointer;
# }
# .form-change-password button[type="submit"]:hover {
# background-color: #45a049;
# }
# .form-change-password .messages {
# text-align: center;
# }
#
# HTML
# TODO
# <form class="form-change-password" method="post">
# <fieldset>
# <legend>
# Change password
# </legend>
# <p>
# <label for="old_password">
# </label>
# Old password
# <input type="password" name="old_password" id="old_password" autofocus=
# "autofocus">
# </input>
# </p>
# <p>
# <label for="password1">
# New password
# </label>
# <input type="password" name="password1" id="password1">
# </input>
# </p>
# <p>
# <label for="password2">
# Confirm new password
# </label>
# <input type="password" name="password2" id="password2">
# </input>
# </p>
# <p>
# <button type="submit" name="change_password" value="change_password">
# Save Changes
# </button>
# </p>
# </fieldset>
# </form>

0 comments on commit 7a2c906

Please sign in to comment.