Thursday, May 1, 2025

Bootstrap 4 Forms


<?php include 'header.php' ?>

<div class="container-fluid">

<form action="blablabla.php" method="post">
	<div class="form-group">
		<label for="email">Email:</label>
		<input type="email" class="form-control" id="email">
	</div>
	
	<div class="form-group">
		<label for="password">Password</label>
		<input type="password" class="from-control" id="password">
	</div>
	
	<button type="button" class="btn btn-primary">Submit</button>
</form>

</div>

<?php include 'footer.php' ?>

<?php include 'header.php' ?>

<div class="container-fluid">

<form class= "form-inline" action="blablabla.php" method="post">
	<div class="form-group">
		<label for="email">Email:</label>
		<input type="email" class="form-control" id="email">
	</div>
	
	<div class="form-group">
		<label for="password">Password</label>
		<input type="password" class="from-control" id="password">
	</div>
	
	<button type="button" class="btn btn-primary">Submit</button>
</form>

</div>

<?php include 'footer.php' ?>

Tkinter Introduction - Top Widget, Method, Button

First, let's make shure that our tkinter module is working ok with simple  for loop that will spawn 5 instances of blank Tk window .  ...