-
Notifications
You must be signed in to change notification settings - Fork 3
/
student_signup.php
35 lines (32 loc) · 1.93 KB
/
student_signup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php include 'includes/header.php';?>
<section class=" gradient-custom">
<div class="container py-5 ">
<div class="row d-flex justify-content-center align-items-center">
<div class="col-12 col-md-8 col-lg-6 col-xl-5 ">
<div class="card card-custom-bg text-white" style="border-radius: 1rem;">
<div class="card-body ">
<div class="mb-md-5 mt-md-4 ">
<h3 class=" mb-2 text-center text-primary">Smart Learning System</h3>
<p class="text-dark mb-5 fw-bold text-center">Student Registeration</p>
<form action="student_registeration.php" method="POST">
<div class="form-outline form-white mb-4">
<input type="hidden" name="id" class="form-control form-control-lg"/>
<label class="form-label text-dark" for="typefirstnameX" >First Name</label>
<input type="text" name="firstname" id="typefirstnameX" class="form-control form-control-lg"/>
<label class="form-label text-dark" for="typelastnameX" >Last Name</label>
<input type="text" name="lastname" id="typelastnameX" class="form-control form-control-lg" />
<label class="form-label text-dark" for="typeEmailX" >Email</label>
<input type="email" name="email" id="typeEmailX" class="form-control form-control-lg"/>
<label class="form-label text-dark" for="typePasswordX">Password</label>
<input type="password" name="password" id="typePasswordX" class="form-control form-control-lg"/><hr>
<input id="radio1" name="role" type="radio" checked="checked" value="student" ><label for=radio1> .</label><br>
<button class="btn btn-primary btn-lg px-5" type="submit" name="signup">Sign Up</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>