forked from noornajjar/473---Project-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
executable file
·138 lines (130 loc) · 3.89 KB
/
Copy pathprofile.html
File metadata and controls
executable file
·138 lines (130 loc) · 3.89 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" type="image/png" href="img/unnamed.png">
<title>Simply.me</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-social.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/profile.css" rel="stylesheet">
</head>
<body>
<div class="container">
<form class="form-horizontal" method="post" action="userpage.html" enctype="multipart/form-data">
<fieldset>
<!-- Form Name -->
<legend>My Profile</legend>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="textinput">Name</label>
<div class="col-md-4">
<input id="txtName" name="textinput" type="text" placeholder="Name" class="form-control input-md">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="textinput">D.O.B</label>
<div class="col-md-4">
<input id="txtBirthDate" name="textinput" type="date" placeholder="Birthday" class="form-control input-md">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="textinput">Email</label>
<div class="col-md-4">
<input id="txtEmail" name="textinput" type="email" placeholder="Email Address" class="form-control input-md">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="textinput">Password</label>
<div class="col-md-4">
<input id="txtPassword" name="textinput" type="password" placeholder="Password" class="form-control input-md">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="textinput">Phone</label>
<div class="col-md-4">
<input id="txtPhone" name="textinput" type="text" placeholder="Phone" class="form-control input-md">
</div>
</div>
<!-- Select Basic -->
<div class="form-group">
<label class="col-md-4 control-label" for="selectbasic">Gender</label>
<div class="col-md-4">
<select id="txtGender" name="selectbasic" class="form-control">
<option value="M">Male</option>
<option value="F">Female</option>
</select>
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="textinput">Website</label>
<div class="col-md-4">
<input id="txtWebsite" name="textinput" type="text" placeholder="Website" class="form-control input-md">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="textinput">Description</label>
<div class="col-md-4">
<textarea id="txtDescription" name="textinput" type="text" placeholder="Description" class="form-control input-md">
</textarea>
</div>
</div>
<!-- File Button -->
<div class="form-group">
<label class="col-md-4 control-label" for="filebutton">Photo</label>
<div class="col-md-4">
<input id="filebutton" name="filebutton" class="input-file" type="file" multiple="multiple">
</div>
</div>
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label" for="singlebutton"></label>
<div class="col-md-4">
<button id="singlebutton" name="singlebutton" class="btn btn-primary">Submit</button>
</div>
</div>
</fieldset>
</form>
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<!-- JS -->
<script src="js/project1.js"></script>
</body>
</html>