ID:263002
 
Code:
#include <dantom/htmllib>

Form/Test
form_reusable=0
form_window=0

var
name
name_size


ProcessForm()
usr.name=name
usr<<browse("thank you for registering","window=popup")

HtmlLayout()
return \
{"<style type="text/css">
td.datacellone {
background-color: red; color: black; border: dashed
}
body {background: black;
color:red}
table {border-style: dashed}
</style>
<table border="1"
<tr>
<td><td class="datacellone">Name:</td>
<td>
[name]</td>
</tr>
<td>
[submit]</td>
</tr></table>"}


mob/Login()
var/Form/Test/frm = new()
frm.name = name
frm.DisplayForm()
return ..()


Problem description:for some reason its not makeing a popup can someone plese tell me why.

You didn't put the size in the browse()

usr<<browse("thank you for registering","window=popup;size=300x300")
In response to Crzylme
That doesn't matter at all
In response to A.T.H.K
bump