mirror of
				https://github.com/oarkflow/mq.git
				synced 2025-11-01 02:03:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			905 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			905 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 
 | |
| <head>
 | |
|     <title>Basic Template</title>
 | |
|     <script src="https://cdn.tailwindcss.com"></script>
 | |
|     <link rel="stylesheet" href="form.css">
 | |
|     <style>
 | |
|         .required {
 | |
|             color: #dc3545;
 | |
|         }
 | |
| 
 | |
|         .group-header {
 | |
|             font-weight: bold;
 | |
|             margin-top: 0.5rem;
 | |
|             margin-bottom: 0.5rem;
 | |
|         }
 | |
| 
 | |
|         .section-title {
 | |
|             color: #0d6efd;
 | |
|             border-bottom: 2px solid #0d6efd;
 | |
|             padding-bottom: 0.5rem;
 | |
|         }
 | |
| 
 | |
|         .form-group-fields>div {
 | |
|             margin-bottom: 1rem;
 | |
|         }
 | |
|     </style>
 | |
| </head>
 | |
| 
 | |
| <body class="bg-gray-100">
 | |
|     <form {{form_attributes}}>
 | |
|         <div class="form-container p-4 bg-white shadow-md rounded">
 | |
|             {{form_groups}}
 | |
|             <div class="mt-4 flex gap-2">
 | |
|                 {{form_buttons}}
 | |
|             </div>
 | |
|         </div>
 | |
|     </form>
 | |
| </body>
 | |
| 
 | |
| </html>
 | 
