Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
web-basic-062018
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Đỗ Thụy Hạnh Chuyên
web-basic-062018
Commits
03fe64d5
Commit
03fe64d5
authored
Jun 21, 2018
by
Đỗ Thụy Hạnh Chuyên
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Creating front-end
parents
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
118 additions
and
0 deletions
+118
-0
index.html
+72
-0
style.css
+46
-0
No files found.
index.html
0 → 100644
View file @
03fe64d5
<!DOCTYPE html>
<html>
<head>
<title>
Register Form
</title>
<meta
charset=
"utf-8"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"./style.css"
>
</head>
<body>
<div
id=
"form_wrapper"
>
<h2>
Register Form
</h2>
<form
class=
"form"
>
<table>
<tr>
<th>
<label
for=
"firstname"
>
First Name
</label>
</th>
<td>
<input
type=
"text"
name=
"firstname"
placeholder=
"First Name"
>
</td>
</tr>
<tr>
<th>
<label
for=
"lastname"
>
Last Name
</label>
</th>
<td>
<input
type=
"text"
name=
"lastname"
placeholder=
"Last Name"
>
</td>
</tr>
<tr>
<th>
<label
for=
"email"
>
Email
</label>
</th>
<td>
<input
type=
"text"
name=
"email"
placeholder=
"Email"
>
</td>
</tr>
<tr>
<th>
<label
for=
"emailconfirmation"
>
Email Confirmation
</label>
</th>
<td>
<input
type=
"text"
name=
"emailconfirmation"
placeholder=
"Email Confirmation"
>
</td>
</tr>
<tr>
<th>
<label
for=
"birthday"
>
Birthday
</label>
</th>
<td>
<input
type=
"text"
name=
"birthday"
placeholder=
"Birthday"
>
</td>
</tr>
<tr>
<th></th>
<td>
<input
type=
"submit"
name=
"register"
value=
"Register"
>
</td>
</tr>
</table>
</form>
</div>
</body>
</html>
\ No newline at end of file
style.css
0 → 100644
View file @
03fe64d5
body
{
}
#form_wrapper
{
width
:
1200px
;
height
:
400px
;
border
:
1px
solid
#000
;
margin
:
0
auto
;
font-size
:
20px
;
color
:
#666
;
}
h2
{
text-align
:
center
;
font-family
:
Arial
;
}
th
{
font-size
:
16px
;
padding-left
:
1em
;
padding-right
:
1em
;
text-align
:
right
;
}
input
{
width
:
1000px
;
height
:
26px
;
border-radius
:
4px
;
border-width
:
2px
;
}
input
[
type
=
text
],
select
{
/*padding: 12px 20px;*/
margin
:
8px
4px
;
display
:
inline-block
;
border
:
1px
solid
#ccc
;
/*border-radius: 4px;*/
box-sizing
:
border-box
;
}
input
[
type
=
submit
],
select
{
width
:
6em
;
margin-top
:
2em
;
}
Write
Preview
Markdown
is supported
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