-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage.php
More file actions
67 lines (60 loc) · 2.35 KB
/
message.php
File metadata and controls
67 lines (60 loc) · 2.35 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php session_start();?>
<?php
if($_POST){
$_SESSION['template'] = $_POST['template'];
// echo 'Your vendor selected is: '.$_SESSION['vendorSelected'].'';
// echo 'Your deadline is: '.$_SESSION['deadline'].'';
// echo 'The recipient is: '.$_SESSION['recipientSelected'].'';
// echo 'Your template selected is: '.$_SESSION['template'].'';
$pageTitle ="Custom Message";
$section ="message";
include("inc/header.php");
?>
<div class="container">
<div class="col-lg-12">
<ul class="nav nav-pills" id="section-tabs">
<div class="col-md-3 recip-tab">
<li class="recip"><a href="questionnaire.php"><span>RECIPIENT</span></a></li>
</div>
<div class="col-md-3 temp-tab">
<li class="templates"><a href="templates.php"><span>TEMPLATES</span></a></li>
</div>
<div class="col-md-3 mess-tab" style="background-color: #8dd552; color: #fff;">
<li class="mess-on"><span>CUSTOM MESSAGE</span></li>
</div>
<div class="col-md-3 view-tab">
<li class="preview"><span>PREVIEW & SEND</span></li>
</div>
</ul>
</div>
</div>
<div class="section-page">
<div class="container-fluid">
<form name="cust-message" method="post" action="preview.php">
<div class="container">
<h2 class="h-mess">Customize introductory text</h2>
<div class="col-lg-12">
<textarea id='widgEditor' name="customText" class="customText">
As part of our vendor management program, our institution will distribute variuos questionnaires to both
prospective and existing vendor relationships. You are recieving this questionnaire so that we can
gather necessary information from your company. Please copmplete this questionnaire and return by the deadline specified
for this questionnaire. Contact us with any questions or concerns.
</textarea>
</div>
<br>
<h2 class="h-mess">Special message for email</h2>
<div class="col-lg-12">
<textarea name="message" id="message" placeholder="Add Special Message"></textarea></div>
</div>
<div class="container-fluid">
<div class="col-md-12"><!--Space--></div>
<div class="col-md-8"><!--Space--></div>
<div class="col-md-4">
<button class="form-button1" type="button" onclick="history.back(-1);">BACK</button>
<input class="form-button2" type="submit" value="NEXT"/>
</div>
</form>
<?php } ?>
</div>
</div>
</div>