Skip to content

Instantly share code, notes, and snippets.

@solebox
Created December 22, 2016 20:45
Show Gist options
  • Save solebox/0fe5facbe7d72ef013af9e1c183b5b7d to your computer and use it in GitHub Desktop.
Save solebox/0fe5facbe7d72ef013af9e1c183b5b7d to your computer and use it in GitHub Desktop.
<html>
<head>
<link rel="stylesheet" href="StyleSheet.css" type="text/css">
<title>Add New Car</title>
</head>
<body>
<h1>Add New Car</h1>
<h3>Fill this form in order to add new stations</h3>
<p><span class="error">* required field.</span></p>
<form method="post" action="fuck.php">
<h4>Information</h4>
Car ID: <input type="text" name="CAR_ID">
<span class="error">* <?php echo $caridErr;?></span>
<br><br>
Car Model: <input type="text" name="MODEL">
<span class="error">* <?php echo $carmodelErr;?></span>
<br><br>
Car Sub Model: <input type="text" name="SUB_MODEL">
<br><br>
Car Year: <input type="text" name="YEAR_CAR">
<span class="error">* <?php echo $caryearErr;?></span>
<br><br>
Engine Capacity: <input type="text" name="ENGINE_CAPACITY">
<span class="error">* <?php echo $enginecapacityErr;?></span>
<br><br>
<div>
Color: <br></br><input type="radio" name="color" value="Red"> Red
<br><input type="radio" name="color" value="Blue"> Blue</br>
<input type="radio" name="color" value="White"> White
</div>
<h4>Attach a part to this car</h4>
<select name="Part_id">
<option selected>Choose The part</option>
</select>
<br><button type="submit" value="Send"> Add Car</button>
<button type="reset" value="Clear"> Clear answers</button></br>
</form>
<a href="jesus.html" target="_self">Back Home</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment