<?php
include('init.php');
include('templates/header.php');

if (isset($_GET['id'])) {
	$id = $_GET['id'];
	if (!$db->isCloud($id)) {
		echo L::cloud_noId;
		return;
	}
	$nbWords = $db->getCloudSize($id);
	echo sprintf('<p class="cloud_text">%s</p>', $db->getCloudText($id));
?>
	<form class="cloud_words" method="post" action="save.php">
		<input type="hidden" id="fid" name="fid" value="<?php echo $id;?>">
<?php
	for ($i=0;$i<$nbWords;$i++) {
		$name = 'fword' . $i;
		echo sprintf('<input class="cloud_words_input" type="text" id="%s" name="%s" placeholder="%s">',
			$name, $name, L::save_word($i + 1)
		);
	}
?>
		<input id="cloud_words_submit" type="submit" value="<?php echo L::save_submit ?>">
	</form>
	<p><?php echo L::save_message ?></p>
<?php
} else {
?>
	<p><?php echo L::cloud_create_message ?></p>
	<form method="post" action="create.php">
		<input type="submit" value="<?php echo L::create ?>">
	</form>
<?php
}
include('templates/footer.php');
?>