backup
This commit is contained in:
28
php-s1/workshop2/index.html
Executable file
28
php-s1/workshop2/index.html
Executable file
@@ -0,0 +1,28 @@
|
||||
<head>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
|
||||
<title>Passing Data</title>
|
||||
</head>
|
||||
<body>
|
||||
<p><strong>Please enter your details below:</strong></p>
|
||||
<form name="form1" method="post" action="passingdata.php">
|
||||
<div id="main">
|
||||
<label>First Name:
|
||||
<input type="text" name="firstname">
|
||||
</label>
|
||||
<label>Surname:
|
||||
<input type="text" name="surname">
|
||||
</label>
|
||||
<div id="radio">
|
||||
<label>CS <input type="radio" name="course" value="CS"/> </label>
|
||||
<label>SE <input type="radio" name="course" value="SE"/> </label>
|
||||
<label>MIT <input type="radio" name="course" value="MIT"/> </label>
|
||||
</div>
|
||||
<label>Living on Salford Campus<input type="checkbox" name="onCampus"></label>
|
||||
<br>
|
||||
<input type="submit" name="Submit" value="Submit"/>
|
||||
<input type="reset" name="Reset" value="Reset"/>
|
||||
</div>
|
||||
</form>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js" integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s" crossorigin="anonymous"></script>
|
||||
</body>
|
Reference in New Issue
Block a user