forked from science-ation/science-ation
Implement basic form filling
This commit is contained in:
parent
1cf7e7b9c0
commit
fc082d9253
@ -53,6 +53,7 @@ while ($s = $q->fetch(PDO::FETCH_OBJ)) {
|
|||||||
'first' => "{$s->firstname}",
|
'first' => "{$s->firstname}",
|
||||||
'last' => "{$s->lastname}",
|
'last' => "{$s->lastname}",
|
||||||
'email' => "{$s->email}",
|
'email' => "{$s->email}",
|
||||||
|
'grade' => "{$s->grade}"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -82,9 +83,8 @@ if ($newstatus != 'complete') {
|
|||||||
id="docusealForm"
|
id="docusealForm"
|
||||||
data-src=<? echo "$SIGNATURES_URL" ?>
|
data-src=<? echo "$SIGNATURES_URL" ?>
|
||||||
data-email=<? echo $student[0]['email'] ?>
|
data-email=<? echo $student[0]['email'] ?>
|
||||||
data-values='<? echo '{"Name": "' . $student[0]['first'] . ' ' . $student[0]['last'] . '"}' ?>'
|
data-values='<? echo '{"Name": "' . $student[0]['first'] . ' ' . $student[0]['last'] . '", "Grade": "' . $student[0]['grade'] . '"}' ?>'
|
||||||
style="display: block; max-height: 800px; overflow: auto;"
|
style="display: block; max-height: 800px; overflow: auto;"
|
||||||
data-allow-to-resubmit="false"
|
|
||||||
</docuseal-form>
|
</docuseal-form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user