117 lines
4.5 KiB
HTML
Executable File
117 lines
4.5 KiB
HTML
Executable File
<style>
|
|
b.fa {
|
|
display: inline-block;
|
|
border-radius: 60px;
|
|
box-shadow: 0px 0px 2px #FF6600;
|
|
padding: 0.5em 0.6em;
|
|
|
|
|
|
}
|
|
b.fa1 {
|
|
display: inline-block;
|
|
border-radius: 60px;
|
|
box-shadow: 0px 0px 2px green;
|
|
padding: 0.5em 0.6em;
|
|
|
|
|
|
}
|
|
a {
|
|
color: #007AFF;
|
|
}
|
|
|
|
</style>
|
|
<!-- start: PAGE TITLE -->
|
|
<section id="page-title">
|
|
<div class="row">
|
|
<div class="col-sm-8">
|
|
|
|
<h1 class="mainTitle" translate="Student Halltickets">{{ mainTitle }}</h1>
|
|
|
|
<span class="mainDescription">Generate halltickets. </span>
|
|
|
|
</div>
|
|
<!-- <div ncy-breadcrumb></div>-->
|
|
</div>
|
|
</section>
|
|
<!-- end: PAGE TITLE -->
|
|
<!-- start: LIST GROUP -->
|
|
<div class="container-fluid container-fullw bg-white" ng-controller="generateHallTicketCtrl" data-ng-init="init()">
|
|
<form name="Form" id="form" novalidate method="post">
|
|
|
|
<div class="row">
|
|
<fieldset>
|
|
<legend>Search</legend>
|
|
<div class="row">
|
|
<!--<div class="col-md-3 form-group" ng-class="{'has-error':Form.mobilenumber.$dirty && Form.mobilenumber.$invalid}">
|
|
<label>
|
|
Mobile Number
|
|
</label>
|
|
|
|
<input type="text" placeholder="Search Mobile Number" ladda="ldloading1.zoom_in" data-style="zoom-in"
|
|
autofocus tabindex="1" class="form-control" name="mobilenumber" id="mobilenumber" ng-minlength="10" ng-maxlength="12"
|
|
ng-model="myModel.mobileNumber" ng-pattern="/^[0-9]*$/" ng-change="getStudentDetails(Form,myModel);"/>
|
|
<span class="error text-small block"
|
|
ng-if="Form.mobilenumber.$error.maxlength || Form.mobilenumber.$error.minlength || Form.mobilenumber.$error.pattern">Enter a valid mobile number</span>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-3 form-group">
|
|
<label>
|
|
Student Name
|
|
</label>
|
|
|
|
<input type="text" placeholder="Search Student Name"
|
|
tabindex="2" class="form-control" name="studentname"
|
|
ng-model="myModel.studentName" ng-pattern="/^[a-zA-Z.\s]*$/" ng-change="getStudentDetails(Form,myModel);" />
|
|
<span class="error text-small block"
|
|
ng-if="Form.studentname.$dirty && Form.studentname.$error.pattern">Invalid student name </span>
|
|
</div>-->
|
|
<div class="col-md-3 form-group">
|
|
<label>
|
|
University
|
|
</label>
|
|
<select class="form-control" name="university" tabindex="3" id="university"
|
|
ng-model="myModel.universityName"
|
|
ng-options="details.universityName for details in university">
|
|
<option value=""> Select University</option>
|
|
</select>
|
|
|
|
</div>
|
|
<div class="col-md-3 form-group">
|
|
<label>
|
|
Course
|
|
</label>
|
|
<select class="form-control" name="course" tabindex="4" id="course"
|
|
ng-model="myModel.courseName"
|
|
ng-options="courseDetails.CourseID as courseDetails.CourseName for courseDetails in myModel.universityName.courseDetails" ng-change="getStudentDetails(Form,myModel);getSubjectDetails(myModel.universityName,myModel.courseName);">
|
|
<option value=""> Select Course</option>
|
|
</select>
|
|
|
|
</div>
|
|
<div class="col-md-3 form-group">
|
|
<label>
|
|
Student
|
|
</label>
|
|
<select class="form-control" name="course" tabindex="5" id="student"
|
|
ng-model="myModel.studentName"
|
|
ng-options="stud.StudentID as stud.Firstname for stud in studentInfo">
|
|
<option value=""> Select Student</option>
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
<!-- end: LIST GROUP -->
|
|
|
|
|
|
|
|
|
|
|