"سانچہ:BoxTemplate" کے نسخوں کے درمیان فرق
Shahidlogs سے
کوئی خلاصۂ ترمیم نہیں |
کوئی خلاصۂ ترمیم نہیں |
||
سطر 1: | سطر 1: | ||
< | <includeonly> | ||
<div class="form-input"> | |||
{{#forminput:form=YourFormName|size=30|button text=Create Page}} | |||
</div> | </div> | ||
/* Add | </includeonly> | ||
. | <noinclude> | ||
This is a template for creating pages using a form. | |||
</noinclude> | |||
<style> | |||
/* Add CSS styling for the form input */ | |||
.form-input { | |||
margin: 10px 0; | |||
padding: 10px; | |||
border: 1px solid #ccc; | |||
border-radius: 5px; | |||
background-color: #f9f9f9; | |||
} | } | ||
/* Style the | /* Style the button */ | ||
. | .form-input input[type="submit"] { | ||
background-color: #0073e6; | |||
color: #fff; | |||
padding: 5px 15px; | |||
border: none; | |||
border-radius: 5px; | |||
cursor: pointer; | |||
} | } | ||
/* | /* Hover effect for the button */ | ||
. | .form-input input[type="submit"]:hover { | ||
background-color: #005bb5; | |||
} | } | ||
</style> |
حالیہ نسخہ بمطابق 22:08، 30 ستمبر 2023ء
This is a template for creating pages using a form.
<style>
/* Add CSS styling for the form input */
.form-input {
margin: 10px 0; padding: 10px; border: 1px solid #ccc; border-radius: 5px; background-color: #f9f9f9;
}
/* Style the button */ .form-input input[type="submit"] {
background-color: #0073e6; color: #fff; padding: 5px 15px; border: none; border-radius: 5px; cursor: pointer;
}
/* Hover effect for the button */ .form-input input[type="submit"]:hover {
background-color: #005bb5;
} </style>