-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
93 lines (71 loc) · 2.1 KB
/
profile.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
92
93
<html>
<head>
<title>FORM</title>
<style>
body{
background-image:url("wel.png");
background-size: 660px 700px;
background-repeat:no-repeat;
}
button{
background-color:black;
color:white;
padding: 10px 15px;
border: none;
cursor: pointer;
width: 90px;
font-family: "Franklin Gothic Medium";
font-size:15px;
margin-top:50px;
}
.place
{ margin-left:610px;
width:600px;
margin-top:0px;
height:200px;
padding-left:50px;
padding-top:10px;
background-color:white;
}
input[type=text], input[type=date] {
width: 75%;
padding: 12px 20px;
margin: 8px 0;
border: 1px solid #ccc;
}
a{text-decoration:none;color:black;}
img{height:20px;
width:20px;
}
</style>
</head>
<body>
<div class="place">
<form action="http://localhost//blogging.php" method="POST" enctype="multipart/form-data">
<h1 style="color:black; ">LET PEOPLE KNOW YOU!!</h1>
<input type="text" name="user" placeholder="RETYPE YOUR USERNAME"/>
<br><br><br>
<input type="text" name="first" placeholder="FIRST NAME"/>      
<input type="text" name="last" placeholder="LAST NAME"/>
<br>
<br>
DATE OF BIRTH<br>
<input type="date" name="date" placeholder="DATE OF BIRTH">
<br><br>
Gender:<br><br>
MALE :<input type="radio" name="gender" value="male" >      
FEMALE:<input type="radio" name="gender" value="female" >
<br><br>
<select name=Locations placeholder="Select Country" id="select">
<option value="india">India</option>
<option value="america">America</option>
<option value="australia">Australia</option>
<option value="thailand">Thailand</option>
</select>            
<input type="file" name="image" accept="image/*">
<br><br>
<button type="reset" style="margin-left:120px;" >CLEAR</button>       <button type="submit" style="width:170px;">SET MY PROFILE</button>
</form>
</div>
</body>
</html>