Initial import of Din Beste Hjelper site
CodeIgniter 3 app for dinbestehjelper.no. Excludes vendor/, local backup folders (new/, archive/, archived/) and DB dumps (*.sql) via .gitignore. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01P16ttGUge8zj91dm6WrmEb
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include(getcwd().'/application/views/includes/public-skeleton-top.php');
|
||||
include(getcwd().'/application/views/pages/includes/booking-finished-form.php');
|
||||
include(getcwd().'/application/views/includes/public-skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include(getcwd().'/application/views/includes/public-skeleton-top.php');
|
||||
include(getcwd().'/application/views/pages/includes/booking-form.php');
|
||||
include(getcwd().'/application/views/includes/public-skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include(getcwd().'/application/views/includes/public-skeleton-top.php');
|
||||
include(getcwd().'/application/views/pages/includes/carefree-vacation.php');
|
||||
include(getcwd().'/application/views/includes/public-skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include(getcwd().'/application/views/includes/public-skeleton-top.php');
|
||||
include(getcwd().'/application/views/pages/includes/home-form.php');
|
||||
include(getcwd().'/application/views/includes/public-skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1,17 @@
|
||||
<style>
|
||||
.page{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rd-navbar-classic.rd-navbar-static .rd-navbar-aside-outer, .rd-navbar-classic.rd-navbar-static .rd-navbar-main-outer {
|
||||
background-color: #151517;
|
||||
}
|
||||
|
||||
.bookingContainer{
|
||||
background: #f6f6f6;
|
||||
}
|
||||
</style>
|
||||
<div class="bookingContainer" style="min-height:500px;">
|
||||
<div class="bookingThankYouTitle">Takk for din bestilling!</div>
|
||||
<div class="bookingThankYouMessageTitle">Vi sendte detaljene for din bestilling via e-post.</div>
|
||||
</div>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,70 @@
|
||||
<div class="bookingContainer">
|
||||
<div class="bookingTitle" style="color:#19AFCA">Forespørsel om tilbud</div>
|
||||
<form method="post" action="<?php echo base_url();?>booking-process">
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Navn</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="name" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Adresse</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="address" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">E-postadresse</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="email" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Telefonnummer</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="phonenumber" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="font-weight:bold;color:#000000">Bygningstype:</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="type_of_building" value="Enebolig" required><label class="formTitle">Enebolig</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="type_of_building" value="Rekkehus" required><label class="formTitle">Rekkehus</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="type_of_building" value="Borettslag/Sameie" required><label class="formTitle">Borettslag/Sameie</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="formTitle" style="font-weight:bold;color:#000000">Hjelp oss med å finne ut hvilke tjenester du ønsker å benytte deg av:</div>
|
||||
|
||||
<div class="formRow">
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="hidden" name="blomstervanning_Enebolig" value="0">
|
||||
<input type="checkbox" class="" name="blomstervanning_Enebolig" value="1"><label class="formTitle">Blomstervanning</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="hidden" name="Postinntak_Enebolig" value="0">
|
||||
<input type="checkbox" class="" name="Postinntak_Enebolig" value="1"><label class="formTitle">Postinntak</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="font-weight:bold;color:#000000">Hvor mange ganger skal vi totalt komme?</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="number" class="formInputBox" name="number_of_worker" value="1">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="font-weight:bold;color:#000000">Utfyllende kommentarer:</label>
|
||||
<textarea class="formTextarea" name="user_notes"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="formRow">
|
||||
<input type="submit" class="submitButton" name="sendFormCarefreeVacation" value="Utsendelse">
|
||||
<a href="<?php echo base_url();?>booking" class="cancelButton" >Ikke ennå</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,97 @@
|
||||
<div class="bookingContainer">
|
||||
<div class="bookingTitle" style="color:#19AFCA">Forespørsel om tilbud</div>
|
||||
<form method="post" action="<?php echo base_url();?>booking-process">
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Navn</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="name" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Adresse</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="address" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">E-postadresse</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="email" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Telefonnummer</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="phonenumber" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="color:000000;font-weight:bold;">Bygningstype:</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="type_of_building" value="Enebolig" required><label class="formTitle">Enebolig</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="type_of_building" value="Rekkehus" required><label class="formTitle">Rekkehus</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="type_of_building" value="Borettslag/Sameie" required><label class="formTitle">Borettslag/Sameie</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="color:000000;font-weight:bold;">Byggeår:</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="year_of_construction" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="color:000000;font-weight:bold;">Er boligen bebodd under byggearbeidene?</label>
|
||||
<div class="inputSelectorContainer" style="display:inline-block;width: auto;margin-right:30px;">
|
||||
<input type="radio" class="" name="home_inhabited" value="" required><label class="formTitle">Ja</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer" style="display:inline-block;width: auto;">
|
||||
<input type="radio" class="" name="home_inhabited" value="" required><label class="formTitle">Nei</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="color:000000;font-weight:bold;">Maling på pussede overflater?</label>
|
||||
<div class="inputSelectorContainer" style="display:inline-block;width: auto;margin-right:30px;">
|
||||
<input type="radio" class="" name="painting_on_plastered_surfaces" value="" required><label class="formTitle">Ja</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer" style="display:inline-block;width: auto;">
|
||||
<input type="radio" class="" name="painting_on_plastered_surfaces" value="" required><label class="formTitle">Nei</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="color:000000;font-weight:bold;">Veggmaling på gipsplateoverflate?</label>
|
||||
<div class="inputSelectorContainer" style="display:inline-block;width: auto;margin-right:30px;">
|
||||
<input type="radio" class="" name="wall_paint_on_a_plasterboard_surface" value="" required><label class="formTitle">Ja</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer" style="display:inline-block;width: auto;">
|
||||
<input type="radio" class="" name="wall_paint_on_a_plasterboard_surface" value="" required><label class="formTitle">Nei</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="color:000000;font-weight:bold;width: auto;">Gulvareal i rommet som skal males:</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="number" class="" name="floor_area" value="1"> <span>m2</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="color:000000;font-weight:bold;width: auto;">Takhøyde:</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="number" class="" name="ceiling_height" value="1"> <span>m</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="formRow" style="color:000000;font-weight:bold;">
|
||||
<label class="formTitle">Utfyllende kommentarer</label>
|
||||
<textarea class="formTextarea" name="user_notes"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="formRow">
|
||||
<input type="submit" class="submitButton" name="sendFormPainting" value="Utsendelse">
|
||||
<a href="<?php echo base_url();?>booking" class="cancelButton" >Ikke ennå</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@@ -0,0 +1,66 @@
|
||||
<div class="bookingContainer">
|
||||
<div class="bookingTitle" style="color:#19AFCA">Grunnleggende opplysninger <br />
|
||||
Krever strømtilkobling og overbygd område (ikke værutsatt)
|
||||
</div>
|
||||
<form method="post" action="<?php echo base_url();?>booking-process">
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Navn</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="name" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Adresse</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="address" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">E-postadresse</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="email" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Telefonnummer</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="phonenumber" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Merke</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="merke" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Type</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="type_of_car" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Farge</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="farge" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Årsmodell</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="Arsmodell" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="formRow">
|
||||
<label class="formTitle" style="font-weight:bold;color:#000000">Utfyllende kommentarer:</label>
|
||||
<textarea class="formTextarea" name="user_notes"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="formRow">
|
||||
<input type="submit" class="submitButton" name="sendFormPolishing" value="Utsendelse">
|
||||
<a href="<?php echo base_url();?>booking" class="cancelButton" >Ikke ennå</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@@ -0,0 +1,17 @@
|
||||
<style>
|
||||
.page{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rd-navbar-classic.rd-navbar-static .rd-navbar-aside-outer, .rd-navbar-classic.rd-navbar-static .rd-navbar-main-outer {
|
||||
background-color: #151517;
|
||||
}
|
||||
|
||||
.bookingContainer{
|
||||
background: #f6f6f6;
|
||||
}
|
||||
</style>
|
||||
<div class="bookingContainer" style="min-height:500px;">
|
||||
<div class="bookingThankYouTitle">Takk for at du tok kontakt!</div>
|
||||
<div class="bookingThankYouMessageTitle">Vi sendte detaljene for dine opplysninger via e-post.</div>
|
||||
</div>
|
||||
@@ -0,0 +1,131 @@
|
||||
<div class="bookingContainer">
|
||||
<div class="bookingTitle" style="color:#19AFCA">Grunnleggende opplysninger</div>
|
||||
<form method="post" action="<?php echo base_url();?>booking-process">
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Navn</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="name" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Adresse</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="address" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">E-postadresse</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="email" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Telefonnummer</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="formInputBox" name="phonenumber" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Bygningstype</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="type_of_building" value="Family house" required><label class="formTitle">Enebolig</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="type_of_building" value="Terraced house" required><label class="formTitle">Rekkehus</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="type_of_building" value="Housing association" required><label class="formTitle">Borettslag/Sameie</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Byggeår</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="text" class="" name="year_of_construction" value="" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Er boligen bebodd under byggearbeidene?</label>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="home_inhabited" value="" required><label class="formTitle">Ja</label>
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<input type="radio" class="" name="home_inhabited" value="" required><label class="formTitle">Nei</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="formTitle">Hjelp oss med å finne ut hvilke tjenester du ønsker å benytte deg av:</div>
|
||||
|
||||
<div class="formRow">
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Rivning av gammelt system (komplett til vannmåler)</label>
|
||||
<input type="hidden" name="demolition_of_old_system" value="0">
|
||||
<input type="checkbox" class="" name="demolition_of_old_system" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Installasjon av nytt system (fra måler)</label>
|
||||
<input type="hidden" name="installation_of_new_system" value="0">
|
||||
<input type="checkbox" class="" name="installation_of_new_system" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Installasjon av vann og avløp i kjøkken</label>
|
||||
<input type="hidden" name="installation_of_water_in_kitchen" value="0">
|
||||
<input type="checkbox" class="" name="installation_of_water_in_kitchen" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Installasjon av vann og avløp på bad</label>
|
||||
<input type="hidden" name="installation_of_water_in_the_bathroom" value="0">
|
||||
<input type="checkbox" class="" name="installation_of_water_in_the_bathroom" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Tilkobling av servant, badekar, dusj</label>
|
||||
<input type="hidden" name="connection_of_washbasin" value="0">
|
||||
<input type="checkbox" class="" name="connection_of_washbasin" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Utskifting av toalett, håndvask, nyinstallasjon</label>
|
||||
<input type="hidden" name="replacement_of_toilet" value="0">
|
||||
<input type="checkbox" class="" name="replacement_of_toilet" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Installasjon av tilkobling for husholdningsapparater</label>
|
||||
<input type="hidden" name="installation_of_connection_for_household" value="0">
|
||||
<input type="checkbox" class="" name="installation_of_connection_for_household" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Tilkobling av oppvaskmaskin</label>
|
||||
<input type="hidden" name="connecting_a_dishwasher" value="0">
|
||||
<input type="checkbox" class="" name="connecting_a_dishwasher" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Tilkobling av vaskemaskin</label>
|
||||
<input type="hidden" name="connection_of_washing_machine" value="0">
|
||||
<input type="checkbox" class="" name="connection_of_washing_machine" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Tilkobling av tørketrommel</label>
|
||||
<input type="hidden" name="connection_of_dryer" value="0">
|
||||
<input type="checkbox" class="" name="connection_of_dryer" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Installasjon av hagekran</label>
|
||||
<input type="hidden" name="installation_of_a_garden_tap" value="0">
|
||||
<input type="checkbox" class="" name="installation_of_a_garden_tap" value="1">
|
||||
</div>
|
||||
<div class="inputSelectorContainer">
|
||||
<label class="formTitle">Installasjon av vannrenseutstyr</label>
|
||||
<input type="hidden" name="installation_of_water_purification" value="0">
|
||||
<input type="checkbox" class="" name="installation_of_water_purification" value="1">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="formRow">
|
||||
<label class="formTitle">Utfyllende kommentarer</label>
|
||||
<textarea class="formTextarea" name="user_notes"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="formRow">
|
||||
<input type="submit" class="submitButton" name="sendFormWaterChannel" value="Utsendelse">
|
||||
<a href="<?php echo base_url();?>booking" class="cancelButton" >Ikke ennå</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@@ -0,0 +1,141 @@
|
||||
<?php
|
||||
$page_identifier = 'ledigestilling';
|
||||
include(getcwd().'/application/views/includes/public-skeleton-top.php');
|
||||
?>
|
||||
|
||||
<section class="section section-lg bg-default">
|
||||
<style>
|
||||
/* Scoped styling for this page only */
|
||||
.ledigestilling-content {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
text-align: left;
|
||||
padding-top: 70px; /* space for header on desktop */
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.ledigestilling-content {
|
||||
padding-top: 80px; /* more space under sticky navbar on mobile */
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.ledigestilling-content ul {
|
||||
margin-left: 25px;
|
||||
padding-left: 15px;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.ledigestilling-content ul li {
|
||||
position: relative;
|
||||
padding-left: 15px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.ledigestilling-content ul li::before {
|
||||
content: "•";
|
||||
color: #009FD9; /* Din Beste Hjelper blue */
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
font-size: 20px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.ledigestilling-content h2 {
|
||||
color: #009FD9;
|
||||
font-weight: 700;
|
||||
margin-bottom: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ledigestilling-content h5 {
|
||||
color: #009FD9;
|
||||
font-weight: 600;
|
||||
margin-top: 40px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.ledigestilling-content p {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="container ledigestilling-content">
|
||||
<h2>ER DU VÅR NYE MALER?</h2>
|
||||
|
||||
<p>Din Beste Hjelper AS er et ungt og dynamisk selskap i Trondheim. Vi startet vår faktiske drift for mindre enn ett år siden, men er allerede stolte av de positive tilbakemeldingene fra våre kunder og resultatene vi har oppnådd. For oss er kontinuerlig læring, utvikling og kvalitet viktig, derfor utfører vi alt arbeid med størst mulig omsorg og presisjon.</p>
|
||||
|
||||
<p>Våre planer inkluderer å ta på oss mer komplekse entreprenøroppdrag i fremtiden, og nå er tiden inne for å bygge teamet videre. Hvis du ønsker å bli en del av et voksende og ambisiøst selskap hvor faglig kvalitet virkelig teller, ser vi frem til å høre fra deg.</p>
|
||||
|
||||
<p>Vi søker en medarbeider for et langsiktig samarbeid. I starten tilbyr vi 30–50 % stilling, som avklares nærmere i intervjuet. Målet vårt er å oppnå full stilling så raskt som mulig.</p>
|
||||
|
||||
<h5>Personlige egenskaper:</h5>
|
||||
<ul>
|
||||
<li>Punktlighet og pålitelighet.</li>
|
||||
<li>Fleksibilitet og tilpasningsevne.</li>
|
||||
<li>Nøyaktighet og høy grad av presisjon.</li>
|
||||
<li>Positivitet, engasjement og lidenskap for malerfaget.</li>
|
||||
<li>Evne til å jobbe selvstendig.</li>
|
||||
</ul>
|
||||
|
||||
<h5>Vi tilbyr:</h5>
|
||||
<ul>
|
||||
<li>Timelønn: 270 NOK brutto.</li>
|
||||
<li>30–50 % stilling i starten.</li>
|
||||
<li>Et hyggelig og støttende arbeidsmiljø med ryddige arbeidsprosesser.</li>
|
||||
<li>Stabilt og langsiktig samarbeid.</li>
|
||||
<li>Varierte prosjekter i Trondheim og omegn.</li>
|
||||
</ul>
|
||||
|
||||
<h5>Kvalifikasjoner:</h5>
|
||||
<ul>
|
||||
<li>Fagbrev som maler eller minimum 2–3 års relevant erfaring.</li>
|
||||
<li>Evne til å jobbe selvstendig og i team.</li>
|
||||
<li>Presis og kvalitetsbevisst arbeidsutførelse.</li>
|
||||
</ul>
|
||||
|
||||
<h5>Fordeler:</h5>
|
||||
<ul>
|
||||
<li>Erfaring med gipsplater (vegger, himlinger).</li>
|
||||
<li>God teknisk sans, evne til å utføre mindre håndverksoppgaver.</li>
|
||||
<li>Åpenhet for å delta i andre typer oppgaver innenfor selskapets tjenester ved behov.</li>
|
||||
<li>Erfaring med airless sprøyte.</li>
|
||||
<li>Norsk språkkunnskap.</li>
|
||||
<li>Førerkort klasse B.</li>
|
||||
</ul>
|
||||
|
||||
<h5>Arbeidsoppgaver:</h5>
|
||||
<ul>
|
||||
<li>Forarbeid: sparkling, sliping og rengjøring.</li>
|
||||
<li>Grunning og maling med rull, pensel og eventuelt airless sprøyte.</li>
|
||||
<li>Maling av vinduer, listverk og dørkarmer.</li>
|
||||
<li>Maskering, beskyttelse av flater og orden på arbeidsplassen.</li>
|
||||
<li>Utvendig maling av tre- og fasadeflater.</li>
|
||||
</ul>
|
||||
|
||||
<h5>Lønn:</h5>
|
||||
<p>Timelønn: 270 NOK brutto.</p>
|
||||
|
||||
<h5>Om arbeidsgiveren:</h5>
|
||||
<p>Din Beste Hjelper AS er et selskap i Trondheim som spesialiserer seg på flyttevask, regelmessig renhold og mindre entreprenøroppgaver. Våre kunder er hovedsakelig private husholdninger, og for dem er presisjon og høy kvalitet spesielt viktig. Derfor søker vi en medarbeider som er stolt av sitt fag og alltid streber etter å levere best mulig resultat.</p>
|
||||
|
||||
<p>I Din Beste Hjelper AS er HMS ikke en formell forpliktelse på papiret, men en felles verdi og en bevisst holdning. Vi tror at bare i et trygt og ryddig arbeidsmiljø kan man levere arbeid som er virkelig godt og av høy kvalitet – dette gir et solid grunnlag for presise og pålitelige resultater.</p>
|
||||
|
||||
<p>Våre planer inkluderer å tilby komplette entreprenørtjenester i nær fremtid, og hos oss har du nå muligheten til å bli en del av et voksende og fremtidsrettet team.</p>
|
||||
|
||||
<h5>Tiltredelse:</h5>
|
||||
<p>Etter avtale, gjerne snarest.</p>
|
||||
|
||||
<h5>Hvordan søke:</h5>
|
||||
<p>Send din CV, referansebilder fra tidligere arbeid og en kort søknad/presentasjon til
|
||||
<a href="mailto:zoltan@dinbestehjelper.no">zoltan@dinbestehjelper.no</a>. Vi ser frem til å høre fra deg!
|
||||
</p>
|
||||
|
||||
<h5>Kontaktperson:</h5>
|
||||
<p>Zoltán Kovács, daglig leder<br>Din Beste Hjelper AS<br>Org.nr: 933 573 702</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php include(getcwd().'/application/views/includes/public-skeleton-bottom.php'); ?>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
include(getcwd().'/application/views/includes/skeleton-top.php');
|
||||
echo '<div class="mainTitle">Felhasználó módosítása</div>';
|
||||
include(getcwd().'/application/views/includes/modify-user-form.php');
|
||||
include(getcwd().'/application/views/includes/skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include(getcwd().'/application/views/includes/public-skeleton-top.php');
|
||||
include(getcwd().'/application/views/pages/includes/painting.php');
|
||||
include(getcwd().'/application/views/includes/public-skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include(getcwd().'/application/views/includes/public-skeleton-top.php');
|
||||
include(getcwd().'/application/views/pages/includes/polishing.php');
|
||||
include(getcwd().'/application/views/includes/public-skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
include(getcwd().'/application/views/includes/skeleton-top.php');
|
||||
echo '<div class="mainTitle">'.$pageTitle.'</div>';
|
||||
include(getcwd().'/application/views/includes/profile-form.php');
|
||||
include(getcwd().'/application/views/includes/skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include(getcwd().'/application/views/includes/public-skeleton-top.php');
|
||||
include(getcwd().'/application/views/pages/includes/quotation-finished-form.php');
|
||||
include(getcwd().'/application/views/includes/public-skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
include(getcwd().'/application/views/includes/skeleton-top.php');
|
||||
echo '<div class="mainTitle">Felhasználók</div>';
|
||||
include(getcwd().'/application/views/includes/user-management-form.php');
|
||||
include(getcwd().'/application/views/includes/skeleton-bottom.php');
|
||||
?>
|
||||
@@ -0,0 +1 @@
|
||||
gjgjhghjg
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include(getcwd().'/application/views/includes/public-skeleton-top.php');
|
||||
include(getcwd().'/application/views/pages/includes/water-channel-form.php');
|
||||
include(getcwd().'/application/views/includes/public-skeleton-bottom.php');
|
||||
?>
|
||||
Reference in New Issue
Block a user