forked from Bengaluru18/team-9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassessment.html
91 lines (87 loc) · 3.35 KB
/
assessment.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<title>Carewords foundation</title>
<style>
body {
background-image: url("logo.png");
background-color: #cccccc;
background-repeat: no-repeat;
background-size:auto;
background-position:top left;
}
h1{
color: teal;
font-family: Montserrat,sans-serif;
}
h2{
color: tomato;
font-family: Montserrat,sans-serif;
}
button{
padding: 10px;
margin: 10px;
background-color: tomato;
font-family: cursive,sans-serif;
border-radius: 6px;
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body background image>
<div class="container">
<h1 align="center" style="color: teal">Careworks Foundation</h1>
<h2 align="center" style="color: tomato">NEED ASSESSMENT</h2><br><hr><br>
<center>
<form action="insert1_ass.php" method="post">
<div class="form-group">
<label for="sid">School Name</label>
<input type="text" style="width: 150px;" class="form-control" id="sid" placeholder="Enter School Id" name="name">
</div>
<div class="form-group">
<label for="flooring">Flooring Condition</label><br>
<input type="radio" name="floor" value="Good" > GOOD
<input type="radio" name="floor" value="Bad"> BAD
<input type="radio" name="floor" value="Worse"> WORSE
</div>
<div class="form-group">
<label for="plastering">Plastering Condition</label><br>
<input type="radio" name="plaster" value="Good" > GOOD
<input type="radio" name="plaster" value="Bad"> BAD
<input type="radio" name="plaster" value="Worse"> WORSE
</div>
<div class="form-group">
<label for="waterproof">Waterproofing</label><br>
<input type="radio" name="water" value="good" > GOOD
<input type="radio" name="water" value="bad"> BAD
<input type="radio" name="water" value="worse"> WORSE
</div>
<div class="form-group">
<label for="ext_painting">PAINTING</label><br>
<input type="radio" name="painting" value="conducted" > CONDUCTED
<input type="radio" name="painting" value="not conducted"> NOT CONDUCTED
</div>
<div class="form-group">
<label for="ren_require">Rennovation Required</label><br>
<input type="radio" name="rennovation" value="yes"> YES
<input type="radio" name="rennovation" value="no"> NO
</div>
<div class="form-group">
<label for="approve">Requires Approval</label><br>
<input type="radio" name="approval" value="yes"> YES
<input type="radio" name="approval" value="no"> NO
</div>
<div class="form-group">
<label for="response">Remarks</label>
<input type="text" style="height: 150px; width:300px;" class="form-control" id="response" placeholder="Enter the Remarks" name="remarks">
</div> <button type="submit" class="btn btn-default" name="submit" style="color: tomato">Submit</button>
</form></center><br><br>
</div>
<hr>
<br><br>
</body>
</html>