summaryrefslogtreecommitdiff
path: root/web/views/modal/new-post.php
blob: 72158622deaeef43d34be00d26d5687ab2086236 (plain)
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
<?php
	$user = $this->main->user();
?>
<form>
<div class="modal-content new-post-modal">
	<div class="row">
		<?php $this->view('template/pfp', array('user' => $user))?>
		<div class="col ml">
			<strong><?=$user['first_name'] . ' ' . $user['last_name']?></strong>
				<span class="dim"><?=lang('now')?></span>
		</div>
	</div>
	<textarea
		type="text"
		name="text"
		id="text"
		placeholder="<?=lang('action_new_post_text', sub: [$user['first_name']])?>"
	></textarea>
</div>
<div class="modal-footer">
		<?=ilang('action_submit',
			id: 'new-post-submit',
			class: 'btn-action',
			attrs: array('type' => 'submit'),
			button: TRUE
		)?>
</div>
</form>