Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Julien David
lipn-search
Commits
82106a92
Commit
82106a92
authored
Mar 23, 2021
by
Hamid
Browse files
page A
parent
92e65bcb
Changes
89
Expand all
Hide whitespace changes
Inline
Side-by-side
site_web/app/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.svg
0 → 100644
View file @
82106a92
This diff is collapsed.
Click to expand it.
site_web/app/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf
0 → 100644
View file @
82106a92
File added
site_web/app/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff
0 → 100644
View file @
82106a92
File added
site_web/app/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff2
0 → 100644
View file @
82106a92
File added
site_web/app/templates/index.html
0 → 100644
View file @
82106a92
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, shrink-to-fit=no"
>
<meta
name=
"description"
content=
""
>
<meta
name=
"author"
content=
""
>
<title>
lipn seach
</title>
<!-- Bootstrap core CSS -->
<link
rel=
"stylesheet"
href=
"{{url_for('static',filename='../static/vendor/bootstrap/css/bootstrap.min.css')}}"
>
<!-- Custom fonts for this template -->
<link
rel=
"stylesheet"
href=
"{{url_for('static',filename='../static/vendor/fontawesome-free/css/all.min.css')}}"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{url_for('static',filename='../static/vendor/simple-line-icons/css/simple-line-icons.css')}}"
>
<link
href=
"https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic"
rel=
"stylesheet"
type=
"text/css"
>
<!-- Custom styles for this template -->
<link
rel=
"stylesheet"
href=
"{{url_for('static',filename='../static/css/landing-page.min.css')}}"
>
</head>
<body>
<!-- Navigation -->
<nav
class=
"navbar navbar-light bg-light static-top"
>
<div
class=
"container"
>
<a
class=
"navbar-brand"
href=
"#"
>
Lipn Seach
</a>
<a
class=
"btn btn-primary"
href=
"#"
>
Connexion
</a>
</div>
</nav>
<!-- Masthead -->
<header
class=
"masthead text-white text-center"
>
<div
class=
"overlay"
></div>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-xl-9 mx-auto"
>
<h1
class=
"mb-5"
>
LIPN-SEACH
</h1>
</div>
<div
class=
"col-md-10 col-lg-8 col-xl-7 mx-auto"
>
<form>
<div
class=
"form-row"
>
<div
class=
"col-12 col-md-25 mb-8 mb-md-0"
>
<input
type=
"text"
class=
"form-control form-control-lg"
placeholder=
"Effectuez une recherche"
>
</div>
</div>
</form>
</div>
</div>
</div>
</header>
<!-- Bootstrap core JavaScript -->
<script
src=
"{{url_for('static',filename='../static/vendor/jquery/jquery.min.js')}}"
></script>
<script
src=
"{{url_for('static',filename='../static/bootstrap/js/bootstrap.bundle.min.js')}}"
></script>
</body>
</html>
site_web/app/views.py
0 → 100644
View file @
82106a92
from
flask
import
Flask
,
render_template
app
=
Flask
(
__name__
)
@
app
.
route
(
'/'
)
def
index
():
return
render_template
(
'index.html'
)
site_web/html/index.html
deleted
100644 → 0
View file @
92e65bcb
<!DOCTYPE html>
<html>
<head><title>
Moteur de recherche
</title></head>
<body>
<h1>
Bienvenue dans notre serveur web fonctionel!!!!!
</h1>
<h2>
Il faut que ça soit trés jolie
</h2>
</body>
</html>
\ No newline at end of file
site_web/run.py
0 → 100644
View file @
82106a92
import
app
from
app
import
app
if
__name__
==
"__main__"
:
app
.
run
(
debug
=
True
)
site_web/server/server.py
deleted
100644 → 0
View file @
92e65bcb
import
http.server
import
socketserver
PORT
=
8080
Handler
=
http
.
server
.
SimpleHTTPRequestHandler
with
socketserver
.
TCPServer
((
""
,
PORT
),
Handler
)
as
http
:
print
(
"Serving at port"
,
PORT
)
http
.
serve_forever
()
\ No newline at end of file
Prev
1
2
3
4
5
Next
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