Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
KLUGLUG
Blood Service Portal
Commits
af2a0dd8
Commit
af2a0dd8
authored
Oct 24, 2019
by
Polavarapu Satya Durga Lalitha Rao Sarma
Browse files
Delete signup.html
parent
7db3029e
Pipeline
#33486
canceled with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
signup.html
deleted
100644 → 0
View file @
7db3029e
<html>
<head>
<link
rel=
"stylesheet"
href=
"style.css"
>
<link
rel=
"stylesheet"
href=
"list.css"
>
<title>
Signup
</title>
<link
rel=
"stylesheet"
href=
"login_style.css"
media=
"all"
/>
</head>
<body>
<div
class=
"topnav"
>
<ul>
<li
><a
href=
'index.php'
>
Home
</a></li>
<li
><a
href=
'signup.html'
>
Want To Be a Blood Donar
</a></li>
<li
><a
href=
'aboutus.html'
>
About Us
</a></li>
<li
><a
href=
'contact.html'
>
Contact
</a></li>
</ul>
</div>
<div
class=
"login"
>
<h2
style=
"color:white; text-align:center;"
></h2>
<h2
style=
"color:white; text-align:center;"
></h2>
<h2
style=
"color: white"
>
Fill Your Details
</h2>
<form
method=
"post"
name=
"myform"
action=
"http://localhost/blood/insert.php"
onsubmit=
"return validateform()"
>
<input
type=
"text"
id=
"nam"
name=
"uname"
placeholder=
"Username"
required=
"required"
/>
<p
style=
"color: white"
><b>
Your Blood Group:
</b></p>
<select
name=
"blood"
id=
"blood"
style=
"color: red"
required=
"required"
>
<option
value=
"A+"
>
A+
</option>
<option
value=
"A-"
>
A-
</option>
<option
value=
"B+"
>
B+
</option>
<option
value=
"B-"
>
B-
</option>
<option
value=
"AB+"
>
AB+
</option>
<option
value=
"AB-"
>
AB-
</option>
<option
value=
"O+"
>
O+
</option>
<option
value=
"O-"
>
O-
</option>
</select>
<br>
<br>
<input
type=
"text"
id=
"numb"
name=
"age"
placeholder=
"Age"
required=
"required"
/>
<input
type=
"text"
id=
"add1"
name=
"addr1"
placeholder=
"Address Line 1"
required=
"required"
/>
<input
type=
"text"
id=
"mb"
name=
"mobile"
placeholder=
"Mobile Number"
required=
"required"
/>
<input
type=
"text"
id=
"city"
name=
"city"
placeholder=
"City"
required=
"required"
/>
<button
type=
"submit"
class=
"btn btn-primary btn-block btn-large"
name=
"signup"
>
Submit
</button>
</form>
</div>
</body>
<script>
function
validateform
()
{
var
x
,
text
,
blod
,
ad1
,
mb
,
cit
,
nam
;
// Get the value of the input field with id="numb"
x
=
document
.
myform
.
age
.
value
;
nam
=
document
.
myform
.
uname
.
value
;
ad1
=
document
.
myform
.
addr1
.
value
;
mb
=
document
.
myform
.
mobile
.
value
;
cit
=
document
.
myform
.
city
.
value
;
if
(
nam
.
length
<
5
)
{
alert
(
"
Your name should contain more than 4 Letters!!
"
);
return
false
;
}
else
if
(
x
>
66
||
x
<
16
||
isNaN
(
x
))
{
alert
(
"
Sorry You cannot donate blood age should be 16 to 66
"
);
return
false
;
}
else
if
(
ad1
.
length
<
6
)
{
alert
(
"
Your Address Line 1 should contain more than 5 Letters!!
"
);
return
false
;
}
else
if
(
mb
.
length
<
10
||
mb
.
length
>
10
||
isNaN
(
x
))
{
alert
(
"
Your Mobile number should have 10 digits!!
"
);
return
false
;
}
else
if
(
cit
.
length
<
3
)
{
alert
(
"
Your Cityname should contain more than 3 Letters!!
"
);
return
false
;
}
else
{
alert
(
"
Details Recorded Successfully
"
);
return
true
;
}
}
</script>
<html>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment