46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
{form-php}
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
    <title>Php Form Builder - Material Design Form</title>
 | 
						|
    <meta name="description" content="">
 | 
						|
 | 
						|
    <!-- Materialize CSS -->
 | 
						|
 | 
						|
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
 | 
						|
 | 
						|
    <!-- Material icons CSS -->
 | 
						|
 | 
						|
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
 | 
						|
 | 
						|
    {form-head}
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
 | 
						|
    <h1 class="center-align">Php Form Builder - Material Design Form</h1>
 | 
						|
    <div class="container">
 | 
						|
 | 
						|
        <div class="row">
 | 
						|
            <div class="col m11 l10">
 | 
						|
                {form}
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <!-- jQuery -->
 | 
						|
 | 
						|
    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
 | 
						|
 | 
						|
    <!-- Materialize JavaScript -->
 | 
						|
 | 
						|
    <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
 | 
						|
    {form-js}
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |