Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2021-005
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
IT18019896 A.R.M.R.M.Mudalinayake
2021-005
Commits
55e3fbf2
Commit
55e3fbf2
authored
Jul 04, 2021
by
Dinushe Jayasekera
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Hasini' into 'master'
Hasini See merge request
2021-005/2021-005!3
parents
a002c01e
93975406
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
130 additions
and
0 deletions
+130
-0
test-Angular - Copy/src/app/dashboard/dashboard.component.html
...Angular - Copy/src/app/dashboard/dashboard.component.html
+2
-0
test-Angular - Copy/src/app/facial-expression/facial-expression.component.css
...src/app/facial-expression/facial-expression.component.css
+54
-0
test-Angular - Copy/src/app/facial-expression/facial-expression.component.html
...rc/app/facial-expression/facial-expression.component.html
+34
-0
test-Angular - Copy/src/app/facial-expression/facial-expression.component.spec.ts
...app/facial-expression/facial-expression.component.spec.ts
+25
-0
test-Angular - Copy/src/app/facial-expression/facial-expression.component.ts
.../src/app/facial-expression/facial-expression.component.ts
+15
-0
No files found.
test-Angular - Copy/src/app/dashboard/dashboard.component.html
View file @
55e3fbf2
...
...
@@ -3,6 +3,8 @@
<div
class=
"page__content shadow p-3 position-relative"
>
<div
class=
"page__content-data position-absolute"
>
Dashboard Content Goes Here
</div>
</div>
</div>
>>>>>>> test-Angular - Copy/src/app/dashboard/dashboard.component.html
test-Angular - Copy/src/app/facial-expression/facial-expression.component.css
0 → 100644
View file @
55e3fbf2
@import
url(../home/home.component.css)
;
body
{
font-family
:
Arial
,
Helvetica
,
sans-serif
;
margin-top
:
50px
;}
*
{
box-sizing
:
border-box
;}
.form
{
margin-top
:
20px
;
font-size
:
15px
;
}
input
[
type
=
text
],
select
,
textarea
{
width
:
100%
;
padding
:
12px
;
border
:
1px
solid
#ccc
;
border-radius
:
4px
;
box-sizing
:
border-box
;
margin-top
:
6px
;
margin-bottom
:
16px
;
resize
:
vertical
;
}
input
[
type
=
submit
]
{
background-color
:
#b61aa9
;
color
:
white
;
padding
:
12px
20px
;
border
:
none
;
border-radius
:
4px
;
cursor
:
pointer
;
}
input
[
type
=
submit
]
:hover
{
background-color
:
#e073bc
;
}
.btn
{
margin-left
:
20px
;
background-color
:
#b61aa9
;
color
:
white
;
padding
:
10px
20px
;
border
:
none
;
border-radius
:
4px
;
cursor
:
pointer
;
}
.btn
:hover
{
background-color
:
#e073bc
;
}
.container
{
border-radius
:
5px
;
background-color
:
#f2f2f2
;
padding
:
20px
;
}
\ No newline at end of file
test-Angular - Copy/src/app/facial-expression/facial-expression.component.html
0 → 100644
View file @
55e3fbf2
<div
class=
"container-fluid page"
>
<div
class=
"d-flex page__box p-3 mt-2"
>
Simle with Simon
</div>
<div
class=
"page__content shadow p-3 position-relative"
>
<div
class=
"page__content-data position-absolute"
>
<div
class=
"container"
>
<h1>
Create Your Baby Profile
</h1>
<form
class=
"form"
action=
"/action_page.php"
>
<label
for=
"fname"
>
Baby's first name
</label>
<input
type=
"text"
id=
"fname"
name=
"firstname"
placeholder=
"Baby's first name.."
>
<label
for=
"lname"
>
Baby's Last Name /
</label>
<input
type=
"text"
id=
"lname"
name=
"lastname"
placeholder=
"Baby's last name.."
>
<label
for=
"age"
>
Age
</label>
<select
id=
"country"
name=
"country"
>
<option
value=
"australia"
>
Age Month 6-1 Year
</option>
<option
value=
"canada"
>
Age 1 Year - 2 Years
</option>
<option
value=
"usa"
>
Age 2 Year - 3 Years
</option>
<option
value=
"usa"
>
Age 3 Year - 4 Years
</option>
</select>
<label
for=
"subject"
>
Optional Details
</label>
<textarea
id=
"subject"
name=
"subject"
placeholder=
"Fill this if optional.."
style=
"height:200px"
></textarea>
<input
type=
"submit"
value=
"Submit"
>
<button
class=
"btn"
>
Already have
</button>
</form>
</div>
</div>
</div>
</div>
\ No newline at end of file
test-Angular - Copy/src/app/facial-expression/facial-expression.component.spec.ts
0 → 100644
View file @
55e3fbf2
import
{
ComponentFixture
,
TestBed
}
from
'
@angular/core/testing
'
;
import
{
FacialExpressionComponent
}
from
'
./facial-expression.component
'
;
describe
(
'
FacialExpressionComponent
'
,
()
=>
{
let
component
:
FacialExpressionComponent
;
let
fixture
:
ComponentFixture
<
FacialExpressionComponent
>
;
beforeEach
(
async
()
=>
{
await
TestBed
.
configureTestingModule
({
declarations
:
[
FacialExpressionComponent
]
})
.
compileComponents
();
});
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
FacialExpressionComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'
should create
'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
test-Angular - Copy/src/app/facial-expression/facial-expression.component.ts
0 → 100644
View file @
55e3fbf2
import
{
Component
,
OnInit
}
from
'
@angular/core
'
;
@
Component
({
selector
:
'
app-facial-expression
'
,
templateUrl
:
'
./facial-expression.component.html
'
,
styleUrls
:
[
'
./facial-expression.component.css
'
]
})
export
class
FacialExpressionComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
():
void
{
}
}
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