<form action="/wow/index" method="post">
<input type="text" name="name">
<input type="text" name="email">
<button type="submit" class="btn btn-primary">Отправить</button>
</form>
class WowController extends Controller
{
public function actionIndex() {
echo 'Wow';
}
}