1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php include("header.php"); ?>
<?php //require 'blimed/tabs.php' ?>
<div id="content" class="single">
<div class="hentry">
<?php
switch(@$_GET['from']){
case 'nyidns':?>
<h1>Påmelding registrert!</h1>
<p>Du vil få mer info per mail når det nærmer seg!</p>
<p>Har du lyst til å melde deg som aktiv? Klikk <a href="http://studentersamfundet.no/bliaktiv.php">her!</a></p>
<?php
break;
default:?>
<h1>Forespørsel registrert!</h1>
<p>Vi vil ta kontakt med deg snart!</p>
<?php
}
?>
</div>
<?php include("sidebar.php"); ?>
</div> <!-- #content -->
<?php include("footer.php"); ?>
|