Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
HIAST-Clinics
Project
Project
Details
Activity
Releases
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
almohanad.hafez
HIAST-Clinics
Commits
5f17efcd
Commit
5f17efcd
authored
Aug 19, 2024
by
Almouhannad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(F) Remove initial content
parent
bbf9278b
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
99 deletions
+23
-99
app.component.html
Clinics.Frontend/src/app/components/root/app.component.html
+0
-97
image.png
Clinics.Frontend/src/assets/image.png
+0
-0
logo.png
Clinics.Frontend/src/assets/images/logo.png
+0
-0
favicon.svg
Clinics.Frontend/src/assets/svg/favicon.svg
+7
-0
index.html
Clinics.Frontend/src/index.html
+16
-2
No files found.
Clinics.Frontend/src/app/components/root/app.component.html
View file @
5f17efcd
<nav
class=
"navbar navbar-expand-sm navbar-light bg-light"
>
<div
class=
"container-fluid"
>
<a
class=
"navbar-brand"
href=
"#"
>
<h1>
Angular Bootstrap
</h1>
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-bs-toggle=
"collapse"
data-bs-target=
"#navbarSupportedContent"
aria-controls=
"navbarSupportedContent"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarSupportedContent"
>
<ul
class=
"navbar-nav me-auto mb-2 mb-lg-0"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link active"
aria-current=
"page"
href=
"#"
>
Home
</a>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"#"
>
Link
</a>
</li>
<li
class=
"nav-item dropdown"
>
<a
class=
"nav-link dropdown-toggle"
href=
"#"
id=
"navbarDropdown"
role=
"button"
data-bs-toggle=
"dropdown"
aria-expanded=
"false"
>
Dropdown
</a>
<ul
class=
"dropdown-menu"
aria-labelledby=
"navbarDropdown"
>
<li><a
class=
"dropdown-item"
href=
"#"
>
Action
</a></li>
<li><a
class=
"dropdown-item"
href=
"#"
>
Another action
</a></li>
<li>
<hr
class=
"dropdown-divider"
>
</li>
<li><a
class=
"dropdown-item"
href=
"#"
>
Something else here
</a></li>
</ul>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link disabled"
href=
"#"
tabindex=
"-1"
aria-disabled=
"true"
>
Disabled
</a>
</li>
</ul>
<form
class=
"d-flex"
>
<input
class=
"form-control me-2"
type=
"search"
placeholder=
"Search"
aria-label=
"Search"
>
<button
class=
"btn btn-outline-success"
type=
"submit"
>
Search
</button>
</form>
</div>
</div>
</nav>
<div
class=
"container-fluid py-3"
>
<div
class=
"row my-3"
>
<div
class=
"col"
>
<label
for=
"exampleFormControlInput1"
class=
"form-label"
>
Email address
</label>
<input
type=
"email"
class=
"form-control form-control-sm"
id=
"exampleFormControlInput1"
placeholder=
"name@example.com"
>
</div>
</div>
<div
class=
"row my-3"
>
<div
class=
"col"
>
<label
for=
"exampleFormControlTextarea1"
class=
"form-label"
>
Example textarea
</label>
<textarea
class=
"form-control form-control-sm"
id=
"exampleFormControlTextarea1"
rows=
"3"
></textarea>
</div>
</div>
<div
class=
"row my-3"
>
<div
class=
"col"
>
<div
class=
"form-check form-switch"
>
<input
class=
"form-check-input"
type=
"checkbox"
id=
"flexSwitchCheckDefault"
>
<label
class=
"form-check-label"
for=
"flexSwitchCheckDefault"
>
Default switch checkbox input
</label>
</div>
</div>
</div>
<div
class=
"row my-3"
>
<div
class=
"col"
>
<button
class=
"btn btn-sm btn-outline-primary"
(
click
)="
open
(
demoModal
)"
>
Launch demo modal
</button>
<button
class=
"btn btn-sm btn-outline-primary"
(
click
)="
showToast
()"
>
Try toasts
</button>
</div>
</div>
</div>
<ng-template
#
demoModal
let-modal
>
<div
class=
"modal-header"
>
<h4
class=
"modal-title"
id=
"modal-basic-title"
>
Profile update
</h4>
<button
type=
"button"
class=
"btn-close"
data-bs-dismiss=
"modal"
aria-label=
"Close"
(
click
)="
modal
.
dismiss
('
Cross
click
')"
></button>
</div>
<div
class=
"modal-body"
>
<form>
<div
class=
"form-group"
>
<label
for=
"dateOfBirth"
>
Date of birth
</label>
<div
class=
"input-group"
>
<input
id=
"dateOfBirth"
name=
"dateOfBirth"
class=
"form-control"
placeholder=
"yyyy-mm-dd"
ngbDatepicker
#
dp=
"ngbDatepicker"
>
<button
type=
"button"
class=
"btn btn-outline-secondary bi bi-calendar"
(
click
)="
dp
.
toggle
()"
></button>
</div>
</div>
</form>
</div>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-outline-dark"
(
click
)="
modal
.
close
('
Save
click
')"
>
Save
</button>
</div>
</ng-template>
<img
src=
"/assets/image.png"
alt=
"img"
>
\ No newline at end of file
Clinics.Frontend/src/assets/image.png
deleted
100644 → 0
View file @
bbf9278b
62.2 KB
Clinics.Frontend/src/assets/images/logo.png
0 → 100644
View file @
5f17efcd
17.3 KB
Clinics.Frontend/src/assets/svg/favicon.svg
0 → 100644
View file @
5f17efcd
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg
height=
"800px"
width=
"800px"
version=
"1.1"
id=
"Layer_1"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
viewBox=
"0 0 280.028 280.028"
xml:space=
"preserve"
fill=
"#000000"
>
<g
id=
"SVGRepo_bgCarrier"
stroke-width=
"0"
/>
<g
id=
"SVGRepo_tracerCarrier"
stroke-linecap=
"round"
stroke-linejoin=
"round"
/>
<g
id=
"SVGRepo_iconCarrier"
>
<g>
<path
style=
"fill:#ffffff;"
d=
"M140.014,0c77.323,0,140.014,62.691,140.014,140.014c0,77.314-62.691,140.014-140.014,140.014 S0,217.336,0,140.014S62.682,0,140.014,0z"
/>
<path
style=
"fill:#E2574C;"
d=
"M78.749,113.787h35.135V78.749c0-4.83,3.912-8.751,8.742-8.751h34.968 c4.822,0,8.733,3.92,8.733,8.751v35.03h34.951c4.839,0,8.751,3.912,8.751,8.751v35.012c0,4.848-3.912,8.768-8.751,8.768h-34.951 v34.933c0,4.839-3.912,8.751-8.733,8.751h-34.968c-4.83,0-8.742-3.912-8.742-8.751V166.31H78.749c-4.839,0-8.76-3.92-8.76-8.768 V122.53C69.989,117.699,73.91,113.787,78.749,113.787z"
/>
</g>
</g>
</svg>
\ No newline at end of file
Clinics.Frontend/src/index.html
View file @
5f17efcd
<!doctype html>
<html
lang=
"
en
"
>
<html
lang=
"
ar
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
Agnular + Bootstrap(NgbModules)
</title>
<title>
برنامج الأطباء
</title>
<base
href=
"/"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<link
rel=
"shortcut icon"
href=
"assets/svg/favicon.svg"
type=
"image/x-icon"
>
<!-- #region Fonts -->
<link
rel=
"preconnect"
href=
"https://fonts.gstatic.com"
>
<link
href=
"https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap"
rel=
"stylesheet"
>
<!-- #endregion Header -->
</head>
<body>
<app-root></app-root>
</body>
</html>
\ No newline at end of file
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