<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
		<title>获取投票代码</title>
		<link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
		<link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
		<link rel="stylesheet" href="../static/web/css/admin.css">
	</head>
	<body>
		<table cellpadding="3" cellspacing="1" align="center" class="table maintable my-3">
			<tr>
				<td bgcolor="#f5f5f5" colspan="2"><a href="vote_main.php">投票管理</a> &gt; 获取投票代码</td>
			</tr>
			<form name="form1" action="tag_test_action.php" target="stafrm" method="post">
				<input type="hidden" name="showsource" value="no">
				<input type="hidden" name="_csrf_token" value="<?php echo $GLOBALS['csrf_token'];?>">
				<tr>
					<td><textarea name="partcode" id="partcode" class="admin-textarea-xl">{dede:vote id='<?php echo $aid?>'}{/dede:vote}</textarea></td>
					<td rowspan="2"><iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe></td>
				</tr>
				<tr>
					<td align="center"><button type="submit" name="Submit" class="btn btn-success btn-sm">提交测试</button></td>
				</tr>
			</form>
			<tr>
				<td colspan="2"><textarea name="htmlf" id="htmlf" class="admin-textarea-xl"><script src="<?php echo $cfg_basehost.'/data/vote/vote_'.$aid.'.js' ?>"></script></textarea></td>
			</tr>
			<tr>
				<td colspan="2" class="p-0">
					<textarea name="htmlf" id="htmlf" class="admin-textarea-xl">
					<?php
					$vt = new DedeVote($aid);
					echo $vt->GetVoteForm();
					$vt->Close();
					?>  
					</textarea>
				</td>
			</tr>
		</table>
	</body>
</html>