Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TFG Miguel Chaveinte
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
migchav
TFG Miguel Chaveinte
Commits
d3a9e676
Commit
d3a9e676
authored
Apr 4, 2023
by
migchav
Browse files
Options
Downloads
Patches
Plain Diff
Delete prueba2.html
parent
afeec494
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/prueba2.html
+0
-107
0 additions, 107 deletions
templates/prueba2.html
with
0 additions
and
107 deletions
templates/prueba2.html
deleted
100644 → 0
+
0
−
107
View file @
afeec494
<!DOCTYPE html>
<html>
<!-- https://www.youtube.com/watch?v=qwRTUeAZoF8-->
<head>
<title>
Pesan Go-Back
</title>
<meta
name=
"viewport"
content=
"initial-scale=1.0"
>
<meta
charset=
"utf-8"
>
<link
rel=
"stylesheet"
href=
"style.css"
>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity=
"sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin=
"anonymous"
>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
>
<script
src=
"https://code.jquery.com/jquery-3.3.1.slim.min.js"
></script>
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
></script>
<script
src=
"https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
></script>
</head>
<body>
<div
id=
"pesan"
>
<div
class=
"inner"
>
<h1
id=
"title"
>
Pesan Go-Back
</h1>
<form>
<ul
class=
"nav nav-tabs"
id=
"myTab"
role=
"tablist"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link active"
id=
"location-tab"
data-toggle=
"tab"
href=
"#location"
role=
"tab"
aria-controls=
"location"
aria-selected=
"true"
>
Lokasi
</a>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
id=
"detail-tab"
data-toggle=
"tab"
href=
"#detail"
role=
"tab"
aria-controls=
"detail"
aria-selected=
"false"
>
Detail Pesanan
</a>
</li>
</ul>
<div
class=
"tab-content"
id=
"myTabContent"
>
<div
class=
"tab-pane fade show active"
id=
"location"
role=
"tabpanel"
aria-labelledby=
"location-tab"
>
<div
class=
"form-group"
>
<label
for=
"start"
>
Masukkan Lokasi Anda
</label>
<input
type=
"text"
class=
"form-control"
id=
"start"
placeholder=
"Jl. Mayjend Ahmad Yani"
required
>
</div>
<div
class=
"form-group"
>
<label
for=
"end"
>
Masukkan Lokasi Tujuan
</label>
<input
type=
"text"
class=
"form-control"
id=
"end"
placeholder=
"Jl. Semarang"
required
>
</div>
<button
type=
"submit"
class=
"btn btn-light"
id=
"pesan-btn"
>
Pesan
</button>
</div>
<div
class=
"tab-pane fade"
id=
"detail"
role=
"tabpanel"
aria-labelledby=
"detail-tab"
>
<h4>
Detail Pesanan
</h4>
<div
class=
"card-custom"
>
<table>
<tr>
<th>
Jarak
</th>
<th>
:
</th>
<td
id=
"distance"
></td>
</tr>
<tr>
<th>
Durasi
</th>
<th>
:
</th>
<td
id=
"duration"
></td>
</tr>
<tr>
<th>
Harga
</th>
<th>
:
</th>
<td
id=
"price"
></td>
</tr>
</table>
</div>
</div>
</div>
</form>
<div
id=
"detail"
>
<hr
/>
<h4>
Detail Pesanan
</h4>
<div
class=
"card-custom"
>
<table>
<tr>
<th>
Jarak
</th>
<th>
:
</th>
<td
id=
"distance"
></td>
</tr>
<tr>
<th>
Durasi
</th>
<th>
:
</th>
<td
id=
"duration"
></td>
</tr>
<tr>
<th>
Harga
</th>
<th>
:
</th>
<td
id=
"price"
></td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div
id=
"map"
></div>
<script
src=
"https://maps.googleapis.com/maps/api/js?key=AIzaSyD_qHKYFum4g_Y8e7sgqS3T26Fjz1IxBpg&libraries=places"
></script>
<script
src=
"script.js"
></script>
<script>
$
(
'
#myTab a
'
).
on
(
'
click
'
,
function
(
event
)
{
event
.
preventDefault
()
$
(
this
).
tab
(
'
show
'
)
})
</script>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment